Fetch the parsed, active DNS records for a domain from the Marque nameserver.
Parameters
Output
Encoding
application/jsondomain
string
Required
No description available.
records
array
Required
No description available.
Errors
NotFound
The specified domain was not found or is not managed by Marque. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "The specified domain was not found or is not managed by Marque."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"domain",
"records"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 253
},
"records": {
"type": "array",
"items": {
"ref": "at.marque.dns#entry",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"domain"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 253,
"description": "The fully qualified domain name."
}
}
},
"description": "Fetch the parsed, active DNS records for a domain from the Marque nameserver."
}