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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
491 msmedian answer time
$0.001listed price per call
$0.001price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://tools.ipintel.ai/dns-lookup
| Category | Everything else |
|---|---|
| Provider host | tools.ipintel.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 4 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.001 | 491 ms |
Example input (from the provider)
{
"body": {
"domain": "example.com",
"types": [
"A",
"MX",
"NS",
"TXT"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}