mijn.host API
  1. Orders
mijn.host API
  • Getting started
    • Introduction
    • Base url
    • Authentication
    • Response codes
  • Domains
    • Domains
      • List domains
      • Get domain
      • Update domain
      • Cancel domain
      • Cancel domain deletion
      • Get DNS records
      • Update DNS records
      • Update single DNS record
      • Get auth code
    • Contacts
      • List profiles
      • Get profile
      • Create profile
      • Update profile
      • Delete 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
  • Orders
    • List orders
      GET
    • Get order
      GET
    • Update order
      PUT
  1. Orders

List orders

GET
/orders/
Retrieve all open orders in account.

Request

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

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 --request GET 'https://mijn.host/api/v2/orders/' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body

Example
{
    "status": 200,
    "status_description": "Request successful",
    "data": {
        "orders": [
            {
                "order_id": 10000,
                "status": "error",
                "services": [
                    {
                        "cart_id": 12345,
                        "type": "hosting",
                        "name": "Starter",
                        "errors": []
                    },
                    {
                        "cart_id": 12346,
                        "type": "domain",
                        "name": "example.com",
                        "errors": [
                            {
                                "code": "transfer_code",
                                "description": "Transfer code is missing or incorrect"
                            }
                        ]
                    }
                ]
            }
        ]
    }
}
🟠400Invalid input
🟠400SSL connection is required
🟠401No valid API key set
🟠401API key has expired
🟠401Remote IP address is not found in the API key whitelist
🔴500Error
Modified at 2026-01-27 12:10:38
Previous
Order domain
Next
Get order
Built with