mijn.host API
  1. Contacts
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
      • Get profile
        GET
      • Create profile
        POST
      • Update profile
        PUT
      • Delete profile
        DELETE
    • 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. Contacts

Get profile

GET
/domains/contacts/{profile}
Retrieve details of specific contact profile.

Request

Authorization
Add parameter in header
API-Key
Example:
API-Key: ********************
Path 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/contacts/10000' \
--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": 0,
    "status_description": "string",
    "data": {
        "id": 0,
        "alias": "string",
        "company": "string",
        "firstname": "string",
        "lastname": "string",
        "gender": "M",
        "vat": "string",
        "street": "string",
        "street_number": "string",
        "street_suffix": "string",
        "zipcode": "string",
        "city": "string",
        "state": "string",
        "country": "string",
        "email": "string",
        "phone_country": "string",
        "phone_area": "string",
        "phone_number": "string",
        "social_security_number": "string",
        "passport_number": "string",
        "company_registration_number": "string",
        "company_url": "string",
        "birth_date": "string",
        "default": {
            "owner": 0,
            "admin": 0,
            "tech": 0,
            "billing": 0,
            "reseller": 0
        }
    }
}
🟠400Invalid input
🟠400SSL connection is required
🟠400No profile ID set
🟠400Profile not found or does not belong to customer
🟠401No valid API key set
🟠401API key has expired
🟠401Remote IP address is not found in the API key whitelist
🔴500Error
Modified at 2025-12-10 14:53:10
Previous
List profiles
Next
Create profile
Built with