x402 conformance preflight of any endpoint: parses the 402 envelope, lints accepts[] (atom
x402 conformance preflight of any endpoint: parses the 402 envelope, lints accepts[] (atomic units, payTo, network), reports the quote, Bazaar extension presence and problems. No purchase is made.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-18
updated
Provider
numberintel.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9A8dfBE7A11ee89dD59D80c93AB0EfE00D5D5767",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"target": "https://api.example.com/v1/data"
},
"type": "http"
},
"output": {
"example": {
"accepts_count": 1,
"base_mainnet_option": true,
"grade": "quote_ok",
"has_bazaar_extension": true,
"http_status": 402,
"problems": [],
"quote": {
"network": "eip155:8453",
"payTo": "0x...",
"usd": 0.01
},
"reachable": true,
"target": "https://api.example.com/v1/data",
"x402_version": 2
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"method": {
"description": "GET or POST, default GET",
"type": "string"
},
"target": {
"description": "https URL of the x402 endpoint to check",
"type": "string"
}
},
"required": [
"target"
],
"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://numberintel.dev/v1/attest/preflight" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://numberintel.dev/v1/attest/preflight");
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://numberintel.dev/v1/attest/preflight")
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/12379.json, and this resource appears in /discovery/resources and /discovery/search.