DNS Lookup API
DNS Lookup API. Resolve domain DNS records and receive structured JSON with A, AAAA, MX, NS, TXT, CAA, and SOA records. Useful for agents, developers, domain diagnostics, email setup checks, DNS troubleshooting, and infrastructure investigation. Paid per call via x402.
1000 (raw units)
price
5
calls / 30d
5
unique payers
2026-09-17
updated
Provider
tools.ipintel.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"domain": "example.com",
"types": [
"A",
"MX",
"NS",
"TXT"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"domain": "example.com",
"ok": true,
"records": {
"A": [
"93.184.216.34"
],
"MX": [
{
"host": "mail.example.com",
"priority": 10
}
],
"NS": [
"a.iana-servers.net",
"b.iana-servers.net"
],
"TXT": [
"v=spf1 -all"
]
},
"service": "dns_lookup",
"timestamp": "2026-06-22T18:15:01+00:00",
"types": [
"A",
"MX",
"NS",
"TXT"
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"domain": {
"description": "Domain name to query, for example example.com",
"type": "string"
},
"types": {
"description": "Optional DNS record types to return",
"items": {
"enum": [
"A",
"AAAA",
"MX",
"NS",
"TXT",
"CAA",
"SOA"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"domain"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"domain": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"records": {
"additionalProperties": true,
"properties": {
"A": {
"items": {
"type": "string"
},
"type": "array"
},
"MX": {
"items": {
"additionalProperties": true,
"properties": {
"host": {
"type": "string"
},
"priority": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"NS": {
"items": {
"type": "string"
},
"type": "array"
},
"TXT": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"service": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"types": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://tools.ipintel.ai/dns-lookup" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://tools.ipintel.ai/dns-lookup");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://tools.ipintel.ai/dns-lookup")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3004.json, and this resource appears in /discovery/resources and /discovery/search.