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
      • Get DNS records
      • Update DNS records
      • Update single DNS record
      • Get auth code
      • Cancel domain deletion
    • Contacts
      • List profiles
        GET
      • Create profile
        POST
      • Update profile
        PUT
      • Get profile
        GET
    • 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. 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;' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>'

Responses

🟢200Success
application/json
Body

Example
{
    "status": 200,
    "status_description": "Request successful",
    "data": {
        "id": 10000,
        "alias": "Custom Profile",
        "company": "Company Name",
        "firstname": "Firstname",
        "lastname": "Lastname",
        "gender": "M",
        "vat": null,
        "street": "Streetname",
        "street_number": "1",
        "street_suffix": "a",
        "zipcode": "0000AB",
        "city": "Cityname",
        "state": "Statename",
        "country": "NL",
        "email": "support@mijn.host",
        "phone_country": "+31",
        "phone_area": "6",
        "phone_number": "12345678",
        "social_security_number": null,
        "passport_number": null,
        "company_registration_number": null,
        "company_url": "https://mijn.host",
        "birth_date": null,
        "default": {
            "owner": true,
            "admin": true,
            "tech": true,
            "billing": true,
            "reseller": true
        }
    }
}
🟠400Invalid input
Modified at 2025-08-01 11:19:22
Previous
Update profile
Next
List profiles
Built with