DNS lookup
$0.001 per call · USDC via x402 ·
GET /api/dns · Cached 5mDNS lookup for a domain. Supported record types: A, AAAA, MX, TXT, NS, CNAME.
Input
| Field | Type | Description |
|---|---|---|
name * | string | Domain name, e.g. example.com |
type | string | Record type (default A) |
Example output
{
"name": "example.com",
"type": "A",
"records": [
"93.184.215.14"
]
}
Try it - see the 402 challenge (free)
curl -i "https://agent402.tools/api/dns?name=example.com&type=A"
The response is HTTP 402 Payment Required with exact payment requirements. Any x402 v2 client pays automatically and retries:
Paid call (JavaScript agent)
import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";
const client = new x402Client();
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);
const res = await payFetch("https://agent402.tools/api/dns?name=example.com&type=A");
Wallet-only. This tool reaches the network/browser/storage, so it is paid in USDC via x402 (no proof-of-work tier).
Related tools
HTTP check
$0.003 ·
POST /api/http-checkCheck any public URL: status code, latency, final URL after redirects, and response headers. The uptime primitive for ag…
TLS certificate
$0.003 ·
POST /api/tls-certInspect the TLS certificate of any public host: subject, issuer, validity window, days remaining, SANs, and SHA-256 fing…
Domain WHOIS (RDAP)
$0.005 ·
POST /api/whoisDomain registration data via RDAP (the structured WHOIS successor): registrar, creation/expiry dates, status, nameserver…