Get Glue Records information for a specific domain

Retrieve information about Glue Records associated with a specific domain. This information is crucial for ensuring correct DNS lookups for your domain, especially when using custom nameservers. The endpoint returns a unique requestId to track the call within the system.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/domains/{domainId}/glue-records
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domains/13862/glue-records" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "domain": "string",
    "glueRecords": [
      {
        "hostname": "string",
        "ips": [
          "string"
        ]
      }
    ],
    "count": 0
  }
}