Domain due-diligence report API: one call composes WHOIS/RDAP registration data, DNS recor
Domain due-diligence report API: one call composes WHOIS/RDAP registration data, DNS records (A, MX, TXT), live email deliverability, and homepage title + excerpt into a single dossier with deterministic risk flags (new registration, expiring soon, no DNSSEC, no mail service, unreachable homepage). Partial-success per section; charged when WHOIS/RDAP or DNS resolves. Use for vendor vetting, KYC screening, phishing triage, and onboarding agents. Cached up to 1 hour.
1000000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-30
updated
Provider
gateway.stride20k.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x552Cc4A10878C7F20574489D47184249657Ca3f6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"domain": "example.com"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"domain": "example.com",
"flags": [
"registered-over-10y"
],
"sections": {
"dns": {
"a": {
"data": {
"answers": [
{
"data": "172.66.147.243",
"name": "example.com",
"ttl": 52,
"typeCode": 1
},
{
"data": "104.20.23.154",
"name": "example.com",
"ttl": 52,
"typeCode": 1
}
],
"dnssecValidated": false,
"name": "example.com",
"type": "A"
},
"ok": true
},
"mx": {
"data": {
"answers": [
{
"data": "0 .",
"name": "example.com",
"ttl": 177,
"typeCode": 15
}
],
"dnssecValidated": true,
"name": "example.com",
"type": "MX"
},
"ok": true
},
"txt": {
"data": {
"answers": [
{
"data": "\"v=spf1 -all\"",
"name": "example.com",
"ttl": 300,
"typeCode": 16
},
{
"data": "\"_k2n1y4vw3qtb4skdx9e7dxt97qrmmq9\"",
"name": "example.com",
"ttl": 300,
"typeCode": 16
}
],
"dnssecValidated": true,
"name": "example.com",
"type": "TXT"
},
"ok": true
}
},
"email": {
"data": {
"aFallback": false,
"deliverable": true,
"domain": "example.com",
"email": "[email protected]",
"hasMx": true,
"mx": [
{
"exchange": "",
"preference": 0
}
],
"syntaxValid": true
},
"ok": true
},
"homepage": {
"data": {
"excerpt": "# Example Domain\n\nThis domain is for use in documentation examples without needing permission. Avoid use in operations.\n\nLearn more",
"finalUrl": "https://example.com/",
"title": "Example Domain"
},
"ok": true
},
"whois": {
"data": {
"dnssec": true,
"domain": "example.com",
"expires": "2026-08-13T04:00:00Z",
"nameservers": [
"elliott.ns.cloudflare.com",
"hera.ns.cloudflare.com"
],
"registered": "1995-08-14T04:00:00Z",
"registrar": "RESERVED-Internet Assigned Numbers Authority",
"status": [
"client delete prohibited",
"client transfer prohibited",
"client update prohibited"
],
"updated": "2026-01-16T18:26:50Z"
},
"ok": true
}
},
"sectionsSucceeded": 6,
"sectionsTotal": 6
},
"endpoint": "/report/domain/:domain",
"meta": {
"attribution": null,
"cached": false,
"fetchedAt": "2026-07-04T00:00:00.000Z",
"source": "composed: RDAP + Cloudflare DoH + direct fetch"
},
"ok": true
},
"type": "json"
}
},
"routeTemplate": "/report/domain/:domain",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"domain": {
"description": "Fully-qualified domain name, no scheme (e.g. 'example.com').",
"missShape": true,
"normalize": "hostname",
"pattern": "([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\.)+(?:[a-zA-Z]{2,}|xn--[a-zA-Z0-9-]{2,})",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"properties": {
"domain": {
"description": "Normalized domain analyzed.",
"type": "string"
},
"flags": {
"description": "Deterministic risk flags, e.g. 'registered-under-30d', 'no-dnssec', 'no-mail-service'.",
"type": "array"
},
"sections": {
"description": "Per-source results, each {ok, data|error}: whois, dns.{a,mx,txt}, email, homepage {title, finalUrl, excerpt}.",
"type": "object"
},
"sectionsSucceeded": {
"description": "How many of the 6 sections succeeded.",
"type": "integer"
},
"sectionsTotal": {
"description": "Always 6.",
"type": "integer"
}
},
"required": [
"domain",
"flags",
"sections",
"sectionsSucceeded"
],
"type": "object"
},
"endpoint": {
"description": "Always \"/report/domain/:domain\".",
"type": "string"
},
"meta": {
"properties": {
"attribution": {
"description": "Licensing attribution when the source requires it.",
"type": [
"string",
"null"
]
},
"cached": {
"description": "Whether this response was served from cache.",
"type": "boolean"
},
"fetchedAt": {
"description": "ISO 8601 time the data was actually retrieved from the upstream.",
"type": "string"
},
"source": {
"description": "Upstream source: composed: RDAP + Cloudflare DoH + direct fetch.",
"type": "string"
}
},
"required": [
"source",
"cached",
"fetchedAt"
],
"type": "object"
},
"ok": {
"description": "true on success.",
"type": "boolean"
}
},
"required": [
"ok",
"endpoint",
"data",
"meta"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://gateway.stride20k.com/report/domain/:domain" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gateway.stride20k.com/report/domain/:domain");
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://gateway.stride20k.com/report/domain/:domain")
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/1163.json, and this resource appears in /discovery/resources and /discovery/search.