mirrored listing x402 eip155:8453xrpl:0stellar:pubneteip155:1440000

BitBooth Whois: pay 0

BitBooth Whois: pay 0.005 USDC, get the parsed whois record for any domain — registrar, creation/updated/expiry dates, name servers, status flags, plus the raw whois text. Two-hop resolution via whois.iana.org then the authoritative registry over TCP port 43. 5s per-connection timeout cap. Rejects IPv4/IPv6 inputs and blocks SSRF at the DNS layer. Built for agents auditing domain ownership, monitoring expiry, or pre-flighting a target.

Do you run app.heinrichstech.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-08
updated

Provider

app.heinrichstech.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xDa2F35d283c42dd60B965322394bc658a5c1769F",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "xrpl:0",
    "payTo": "rfryheo6yzFdLWj8qUQtZc7zG9MKkBkUEy",
    "asset": "XRP",
    "amount": "10000",
    "maxTimeoutSeconds": 600
  },
  {
    "scheme": "exact",
    "network": "xrpl:0",
    "payTo": "rfryheo6yzFdLWj8qUQtZc7zG9MKkBkUEy",
    "asset": "524C555344000000000000000000000000000000",
    "amount": "0.010000",
    "maxTimeoutSeconds": 600
  },
  {
    "scheme": "exact",
    "network": "xrpl:0",
    "payTo": "rfryheo6yzFdLWj8qUQtZc7zG9MKkBkUEy",
    "asset": "5553444300000000000000000000000000000000",
    "amount": "0.010000",
    "maxTimeoutSeconds": 600
  },
  {
    "scheme": "exact",
    "network": "stellar:pubnet",
    "payTo": "GCB5WZT5VCBBATGMQMTB6TLUXD6KQC6N5ITRWK3CCP4J3YOCE45FA2GO",
    "asset": "XLM",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "stellar:pubnet",
    "payTo": "GCB5WZT5VCBBATGMQMTB6TLUXD6KQC6N5ITRWK3CCP4J3YOCE45FA2GO",
    "asset": "USDC",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "onchain",
    "network": "eip155:8453",
    "payTo": "0xDa2F35d283c42dd60B965322394bc658a5c1769F",
    "asset": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196",
    "amount": "100000000000000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "onchain",
    "network": "eip155:1440000",
    "payTo": "0xDa2F35d283c42dd60B965322394bc658a5c1769F",
    "asset": "XRP",
    "amount": "400000000000000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "category": "data",
    "discoverable": true,
    "info": {
      "input": {
        "body": {
          "domain": "example.com"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "createdAt": "1995-08-14T04:00:00Z",
          "domain": "example.com",
          "expiresAt": "2025-08-13T04:00:00Z",
          "nameServers": [
            "a.iana-servers.net",
            "b.iana-servers.net"
          ],
          "ok": true,
          "raw": "... full whois text ...",
          "registrar": "RESERVED-Internet Assigned Numbers Authority",
          "registry": "whois.verisign-grs.com",
          "service": "BitBooth /v1/cdp/whois",
          "status": [
            "clientDeleteProhibited",
            "clientTransferProhibited"
          ],
          "ttlMs": 412,
          "updatedAt": "2024-08-14T07:01:38Z"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "domain": {
                  "description": "RFC-style hostname with TLD (4-253 chars). IPv4/IPv6 inputs rejected.",
                  "type": "string"
                }
              },
              "required": [
                "domain"
              ]
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "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": [
      "whois",
      "domain",
      "registrar",
      "expiry",
      "dns",
      "agent-dev"
    ]
  }
}

Use it

curl

curl "https://app.heinrichstech.com/v1/cdp/whois"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://app.heinrichstech.com/v1/cdp/whois");
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://app.heinrichstech.com/v1/cdp/whois")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/2815.json, and this resource appears in /discovery/resources and /discovery/search.