Get contact details for a domain

Retrieve the contact information associated with a specific domain. This can include details for the registrant, administrator, and technical contact, which is important for managing domain ownership and technical configuration.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
400
error string
message string
code string
timestamp string
requestId string
domainStatus string
domainStatusChanged boolean
syncTriggered boolean
domainId string
401
error string
message string
code string
timestamp string
requestId string
403
error string
message string
code string
timestamp string
requestId string
domainStatus string
reason string
429
error string
message string
retryAfter string
requestId string
500
error string
message string
code string
timestamp string
requestId string
504
error string
message string
code string
timestamp string
requestId string
GET https://cloud.hostup.se/api/domain-contacts/{id}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domain-contacts/17302" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "contacts": {
      "registrant": {
        "firstname": "string",
        "lastname": "string",
        "companyname": "string",
        "address1": "string",
        "address2": "string",
        "city": "string",
        "state": "string",
        "country": "string",
        "postcode": "string",
        "email": "string",
        "phonenumber": "string",
        "orgno": "string"
      }
    },
    "success": true
  }
}