host intel: DNS, leaf TLS, and WHOIS/RDAP for one hostname in a single settle
host intel: DNS, leaf TLS, and WHOIS/RDAP for one hostname in a single settle. Use when you need live host facts together and must not guess. Child errors stay in-field; we do not invent data.
15000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-23
updated
Provider
api.fetchx402.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x33236133BecE789D551d0B5c4f9A50095d4b57d3",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "15000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"iconUrl": "https://api.fetchx402.com/favicon.ico",
"input": {
"method": "GET",
"queryParams": {
"dns_type": "A",
"domain": "example.com"
},
"type": "http"
},
"output": {
"example": {
"dns": {
"domain": "example.com",
"rcode": "NOERROR",
"records": [
{
"address": "104.20.23.154"
}
],
"resolver": "1.1.1.1",
"ttl": 20,
"type": "A"
},
"domain": "example.com",
"ssl": {
"cipher": "aes_256_gcm_sha384",
"domain": "example.com",
"expired": false,
"fingerprint_sha256": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
"hostname_match": true,
"issuer": "CN=DigiCert Global G3 TLS ECC SHA384 2020 CA1, O=DigiCert Inc, C=US",
"not_after": "2027-01-15T23:59:59Z",
"not_before": "2026-01-15T00:00:00Z",
"not_yet_valid": false,
"peer_ip": "23.215.0.138",
"port": 443,
"sans": [
"www.example.org",
"example.com",
"example.net",
"example.org"
],
"serial": "0f1a2b3c4d5e6f708192a3b4c5d6e7f8",
"signature_algorithm": "ecdsa-with-SHA384",
"sni": "example.com",
"subject": "CN=www.example.org, O=Internet Corporation for Assigned Names and Numbers, C=US",
"tls_version": "tlsv1.3"
},
"whois": {
"created_at": "1995-08-14T04:00:00Z",
"dnssec": true,
"domain": "example.com",
"expires_at": "2025-08-13T04:00:00Z",
"handle": "2336799_DOMAIN_COM-VRSN",
"nameservers": [
"a.iana-servers.net",
"b.iana-servers.net"
],
"rdap_server": "https://rdap.verisign.com/com/v1/",
"registrar": {
"iana_id": "376",
"name": "RESERVED-Internet Assigned Numbers Authority"
},
"source": "rdap",
"status": [
"client delete prohibited",
"client transfer prohibited",
"client update prohibited"
],
"updated_at": "2024-08-14T07:01:39Z"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"dns_type": {
"description": "DNS record type passed through to DNS Explorer. Defaults to A if omitted. Does not change TLS or RDAP.",
"enum": [
"A",
"AAAA",
"MX",
"TXT",
"CNAME",
"NS",
"SOA"
],
"type": "string"
},
"domain": {
"description": "Public fully-qualified domain name. Same Domain guards as the child tools. IPs, localhost, and internal/mDNS names are rejected.",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.fetchx402.com/v1/bundles/host-intel" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.fetchx402.com/v1/bundles/host-intel");
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://api.fetchx402.com/v1/bundles/host-intel")
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/4858.json, and this resource appears in /discovery/resources and /discovery/search.