Boon recognized x402 endpoint directory
Boon recognized x402 endpoint directory
10000 (raw units)
price
10
calls / 30d
6
unique payers
2026-09-12
updated
Provider
api.boonprotocol.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xF121fbeceC43e1B616D47285851c20d5fC64431b",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"context": "with",
"limit": 20,
"sort": "reviewed"
},
"type": "http"
},
"output": {
"example": {
"routes": [
{
"description": {
"price": {
"amount": "0.100000",
"checkedAt": "2026-07-15T21:03:32Z",
"currency": "USD",
"display": "$0.10"
},
"protocols": [
"x402",
"mpp"
],
"receiptAuthority": {
"checkedAt": "2026-07-16T18:24:00Z",
"payTo": "0xF121fbeceC43e1B616D47285851c20d5fC64431b",
"signer": null,
"signerSource": null,
"source": "live-x402-challenge",
"status": "not_observed"
},
"request": {
"notes": [
"Run the free Locus coverage preflight before a paid call",
"Unsupported coverage returns a free diagnostic instead of a paid artifact",
"A paid job may be partial when an optional PDF or video sidecar fails"
],
"required": [
"address"
]
},
"route": {
"method": "POST",
"publicEndpointUrl": "https://api.locus.report/api/locus-property-update"
},
"routeId": "0x9569f7ef2e344da57aa497dafe4509499f133340d1e0ab0d3e93f6e7c057bb0e",
"service": "Locus",
"source": {
"checkedAt": "2026-07-15T21:03:32Z",
"kind": "agentcash-openapi",
"label": "AgentCash OpenAPI discovery",
"trustTier": "origin_hosted"
},
"summary": "Property Decision Check: Recent & Scheduled Changes",
"version": "boon.x402-route-description/v1"
},
"reviewSummary": {
"boonBackedCount": 1,
"count": 1,
"distinctReviewerWalletCount": 1,
"indexComplete": true,
"latestReviewAt": 1784149204,
"receiptVerifiedCount": 0,
"selfReportedCount": 0
},
"routeId": "0x9569f7ef2e344da57aa497dafe4509499f133340d1e0ab0d3e93f6e7c057bb0e"
}
],
"version": "1"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"context": {
"default": "with",
"enum": [
"with",
"all",
"raw"
],
"type": "string"
},
"limit": {
"default": 20,
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"method": {
"type": "string"
},
"origin": {
"format": "uri",
"type": "string"
},
"q": {
"maxLength": 160,
"type": "string"
},
"recognizer": {
"pattern": "^0x[0-9a-fA-F]{40}$",
"type": "string"
},
"sort": {
"default": "reviewed",
"enum": [
"reviewed",
"recent"
],
"type": "string"
}
},
"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.boonprotocol.com/api/v1/x402/routes" # -> 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.boonprotocol.com/api/v1/x402/routes");
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.boonprotocol.com/api/v1/x402/routes")
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/9051.json, and this resource appears in /discovery/resources and /discovery/search.