mijn.host API
  1. Domains
mijn.host API
  • Getting started
    • Introduction
    • Base url
    • Authentication
    • Response codes
  • Domains
    • Domains
      • List domains
        GET
      • Get domain
        GET
      • Update domain
        PUT
      • Cancel domain
        DELETE
      • Get DNS records
        GET
      • Update DNS records
        PUT
      • Update single DNS record
        PATCH
      • Get auth code
        GET
      • Cancel domain deletion
        PUT
    • Contacts
      • List profiles
      • Create profile
      • Update profile
      • Get profile
    • Nameservers
      • List profiles
      • Create profile
      • Update profile
      • Get profile
    • DNS templates
      • List templates
      • Create template
      • Update template
      • Get template
    • Availability
      • Check domain availability
    • Order
      • Order domain
  1. Domains

List domains

GET
/domains
Retrieve all domains from your account

Request

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

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/domains?tags=project1,project2' \
--header 'Accept;' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>'

Responses

🟢200OK
application/json
Body

Example
{
    "status": 200,
    "status_description": "Request successful",
    "data": {
        "domains": [
            {
                "id": 1000,
                "domain": "mydomain.com",
                "renewal_date": "2030-01-01",
                "status": "Active",
                "status_id": 1,
                "tags": [
                    "my-tag"
                ]
            }
        ]
    }
}
🟠400Invalid input
Modified at 2025-09-08 12:27:38
Previous
Response codes
Next
Get domain
Built with