Get glue records
This endpoint allows you to get glue records by domain
Endpoint
GET /registrar/v1/domains/{domain}/gluerecords
Parameters
| Name | Location | Required | Type | Description |
|---|---|---|---|---|
| domain | Path | Yes | String | A complete domain name |
Response
Glue record information
Example Request
GET https://api.nameshield.net/registrar/v1/domains/exemple.com/gluerecords
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"
}
]
}