Look up a domain: registration data from RDAP (registrar, created, expires, status, namese
Look up a domain: registration data from RDAP (registrar, created, expires, status, nameservers), live DNS records (A, AAAA, MX, NS, TXT, CNAME), the TLS certificate served at the name (issuer, validity, alternative names, fingerprint), and the HTTP front door (status, server, redirect). One JSON answer, no API key, no rate-limited WHOIS. GET with ?name= or POST. $0.005.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-18
updated
Provider
scribe.vimabrosta.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x693d72fc5ad1f09B1c62be3707679cbe334c88df",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "AC3BtRaGzvyEVZnx6z4qMDNxD5dmnoyPTz5EWW3Pn2tg",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "AC3BtRaGzvyEVZnx6z4qMDNxD5dmnoyPTz5EWW3Pn2tg",
"asset": "So11111111111111111111111111111111111111112",
"amount": "47817",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"body": {
"name": "example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"dns": {
"a": [
"..."
],
"mx": [],
"ns": [
"..."
],
"txt": [
"..."
]
},
"http": {
"server": "...",
"status": 200
},
"name": "example.com",
"receipt": {
"price": "$0.005",
"product": "domain"
},
"registration": {
"created": "...",
"expires": "...",
"nameservers": [
"..."
],
"registrar": "...",
"status": [
"..."
]
},
"tls": {
"days_left": 60,
"issuer": "...",
"valid_to": "..."
}
},
"type": "json"
}
},
"name": "Scribe",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"name": {
"description": "A hostname, or a URL whose host is used.",
"type": "string"
}
},
"required": [
"name"
],
"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": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"domain",
"whois",
"rdap",
"dns",
"tls",
"translation",
"translate",
"convert",
"markdown",
"pdf",
"html",
"screenshot",
"render"
]
}
}Use it
curl
curl "https://scribe.vimabrosta.com/v1/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://scribe.vimabrosta.com/v1/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://scribe.vimabrosta.com/v1/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/13447.json, and this resource appears in /discovery/resources and /discovery/search.