1. Order
my.host API
  • Getting started
    • Introduction
    • Base url
    • Authentication
    • Response codes
  • Domains
    • Domains
      • DNS
        • Zone
          • Get DNS zonefile
          • Import DNS zonefile
        • Get DNS records
        • Update DNS records
        • Update single DNS record
        • Delete single DNS record
      • List domains
      • Get domain
      • Update domain
      • Cancel domain
      • Cancel domain deletion
      • Get auth code
    • Contacts
      • List profiles
      • Get profile
      • Create profile
      • Update profile
      • Delete profile
      • Get profile
      • Update profile
    • Nameservers
      • List profiles
      • Get profile
      • Create profile
      • Update profile
      • Delete profile
    • DNS templates
      • List templates
      • Get template
      • Create template
      • Update template
      • Delete template
    • Availability
      • Check domain availability
    • Order
      • Order domain
        POST
    • Extensions
      • List domain extensions
      • Get domain extension
  • Virtual Private Servers
    • Backups
      • List backups
      • Create backup
      • Restore backup
    • SSH keys
      • List SSH keys
      • Delete SSH key
      • Add SSH key
    • Firewall
      • Get VPS firewall
      • Update VPS firewall
    • VPC
      • Get VPS VPC
      • Create VPS VPC
      • Add VPC subnet
      • Attach VPC subnet
    • Order
      • List VPS products
      • Order VPS
    • Floating IPs
      • List floating IPs
      • Reserve floating IP
      • Attach floating IP
      • Detach floating IP
      • Delete floating IP
    • List VPS instances
      GET
    • VPS details
      GET
    • Update VPS
      PUT
    • Restart VPS
      POST
    • Enable or disable rescue mode
      PUT
    • Cancel VPS
      DELETE
    • Cancel VPS deletion
      PUT
    • List available OS images
      GET
    • Reinstall VPS
      POST
    • Start VPS
      POST
    • Stop VPS
      POST
    • Power off VPS
      POST
    • Reset VPS root password
      POST
    • Change VPS hostname
      PUT
  • Certificates
    • List certificates
    • Get certificate
    • List certificate products
    • Order certificate
    • Generate CSR
    • Request certificate
  • Orders
    • List orders
    • Get order
    • Update order
  • Affiliate
    • Commissions
      • List affiliate commissions
      • Get affiliate commission
    • Payments
      • List affiliate payments
      • Get affiliate payment
  • Account
    • Profile
      • Get account profile
      • Update account profile
    • Payment methods
      • List payment methods
      • Update default payment method
    • Invoices
      • List invoices
      • Get invoice
      • Download invoice PDF
    • Users
      • List account users
      • Get account user
      • Create account user
      • Update account user
    • Tickets
      • List support tickets
      • Get support ticket
      • Create support ticket
      • Reply to support ticket
  • Tools
    • Get your IP and customer number
  1. Order

Order domain

POST
/domains/order
Transfer or register a domain. Be careful with this command as the order will be executed directly and your account will be charged. Premium domains are protected against accidental orders: a premium domain is rejected with status 400 unless accept_premium_price is sent and matches the current premium registration price (ex. VAT) returned by the rejection and by the availability endpoint. For transfers, set nameserver to retrieve to copy the domain's current nameservers. A domain that is already in the account cannot be ordered again, except a transfer of a TLD that changes the holder via transfer (currently .be).

Request

Authorization
Add parameter in header
API-Key
Example:
API-Key: ********************
Header Params

Body Params application/json

Example
{
    "domain": "string",
    "type": "register",
    "transfer_code": "string",
    "accept_premium_price": 0,
    "nameserver": "string",
    "dns_template_id": 0,
    "profile": {
        "owner": 0,
        "admin": 0,
        "tech": 0,
        "billing": 0
    }
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://mijn.host/api/v2/domains/order' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "domain": "string",
    "type": "register",
    "transfer_code": "string",
    "accept_premium_price": 0,
    "nameserver": "string",
    "dns_template_id": 0,
    "profile": {
        "owner": 0,
        "admin": 0,
        "tech": 0,
        "billing": 0
    }
}'

Responses

🟢200OK
application/json
Bodyapplication/json

Example
{
    "status": 0,
    "status_description": "string",
    "data": {
        "order_id": 0
    }
}
🟠400Wrong request method
🟠400SSL connection is required
🟠400Unsupported order type. Allowed values: register, transfer
🟠400No domain set
🟠400This order exceeds your limit for ordering on credit. Please contact our customer service.
🟠400Payment afterwards is not allowed for this account. Please contact our customer service.
🟠400Domain already exists in your account
🟠400Your domain request contains an empty extension
🟠400The extension of this domain is not supported
🟠400Premium domain confirmation required or mismatched
🟠401No valid API key set
🟠401API key has expired
🟠401Remote IP address is not found in the API key whitelist
🔴500Error
Modified at 2026-09-19 11:44:28
Previous
Check domain availability
Next
List domain extensions
Built with