Get a glue record
This endpoint allows you to get a glue record for a given domain and hostname
Endpoint
GET /registrar/v1/domains/{domain}/gluerecords/{hostname}
Parameters
| Name | Location | Required | Type | Description |
|---|---|---|---|---|
| domain | Path | Yes | String | A complete domain name |
| hostname | Path | Yes | String | A glue record hostname |
Response
Glue record information
Example Request
GET https://api.nameshield.net/registrar/v1/domains/exemple.com/gluerecords/ns1.example.com
Content-Type: application/json
Example Response
{
"message": "Ok",
"data": [
{
"domain": "example.com",
"name": "ns1.example.com",
"ipv4": [
"1.1.1.1"
],
"ipv6": [
"2606:4700:4700::1111"
],
"status": "Pending create"
}
]
}