The API base path is
https://api.ip-seek.com/json/dig/{query}/{type}
{query}
can be a single FQDN (Fully Qualified Domain Name).
{type}
can be a single dig type (e.g. A, AAAA, MX, NS, SOA, TXT, ANY). If you don't
supply a dig type, ANY will be used.
GET |
|
{
"success": "true",
"data": "[]",
"executionDuration": "0.1216",
"version": "1.0.0",
}
{
"A" => [
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "A",
"ip": "172.217.169.206"
}
],
"AAAA" => [
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "AAAA",
"ip": "2a00:1450:4017:80b::200e"
}
],
"TXT" => [
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "docusign=1b0a6754-49b1-4db5-8540-d2c12664b289",
"entries": [
"docusign=1b0a6754-49b1-4db5-8540-d2c12664b289"
]
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "docusign=05958488-4752-4ef2-95eb-aa7ba8a3bd0e",
"entries": [
"docusign=05958488-4752-4ef2-95eb-aa7ba8a3bd0e"
]
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "google-site-verification=TV9-DBe4R80X4v0M4U_bd_J9cpOJM0nikft0jAgjmsQ",
"entries": [
"google-site-verification=TV9-DBe4R80X4v0M4U_bd_J9cpOJM0nikft0jAgjmsQ"
]
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "apple-domain-verification=30afIBcvSuDV2PLX",
"entries": [
"apple-domain-verification=30afIBcvSuDV2PLX"
]
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "v=spf1 include:_spf.google.com ~all",
"entries": [
"v=spf1 include:_spf.google.com ~all"
]
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "MS=E4A68B9AB2BB9670BCE15412F62916164C0B20BB",
"entries": [
"MS=E4A68B9AB2BB9670BCE15412F62916164C0B20BB"
]
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "globalsign-smime-dv=CDYX+XFHUw2wml6/Gb8+59BsH31KzUr6c1l2BPvqKX8=",
"entries": [
"globalsign-smime-dv=CDYX+XFHUw2wml6/Gb8+59BsH31KzUr6c1l2BPvqKX8="
]
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "google-site-verification=wD8N7i1JTNTkezJ49swvWW48f8_9xveREV4oB-0Hf5o",
"entries": [
"google-site-verification=wD8N7i1JTNTkezJ49swvWW48f8_9xveREV4oB-0Hf5o"
]
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "TXT",
"txt": "facebook-domain-verification=22rm551cu4k0ab0bxsw536tlds4h95",
"entries": [
"facebook-domain-verification=22rm551cu4k0ab0bxsw536tlds4h95"
]
}
],
"MX" => [
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "MX",
"pri": 10,
"target": "aspmx.l.google.com"
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "MX",
"pri": 50,
"target": "alt4.aspmx.l.google.com"
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "MX",
"pri": 20,
"target": "alt1.aspmx.l.google.com"
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "MX",
"pri": 40,
"target": "alt3.aspmx.l.google.com"
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "MX",
"pri": 30,
"target": "alt2.aspmx.l.google.com"
}
],
"NS" => [
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "NS",
"target": "ns1.google.com"
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "NS",
"target": "ns2.google.com"
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "NS",
"target": "ns4.google.com"
},
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "NS",
"target": "ns3.google.com"
}
],
"SOA" => [
{
"host": "google.com",
"class": "IN",
"ttl": 0,
"type": "SOA",
"mname": "ns1.google.com",
"rname": "dns-admin.google.com",
"serial": 376129759,
"refresh": 900,
"retry": 900,
"expire": 1800,
"minimum-ttl": 60,
}
]
}