Find live x402 endpoints worth paying, by capability: returns onlyendpoints Delx has live-
Find live x402 endpoints worth paying, by capability: returns onlyendpoints Delx has live-probed, each with liveness score, last-observedtimestamp, observed price, response-shape validity and Agents Hive ban-liststatus; every row cites its probe receipt, and ghost endpoints and deadquotes are filtered out before you spend.Limitation: observations, not endorsements — freshness is bounded by thelast probe cycle, and absence from the directory means unprobed, not unsafe.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-28
updated
Provider
api.delx.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9f8bd9875b3E0b632a24A3A7C73f7787175e73A2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9f8bd9875b3E0b632a24A3A7C73f7787175e73A2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "28heAMpFkeUJsL7o7apiK4oJwZWq2fUHinRwbgYYsemG",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "x402-trust",
"info": {
"input": {
"body": {
"capability": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"capability": "dns",
"count": 0,
"disclaimer": "observations, not endorsements",
"results": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"capability": {
"description": "Capability query matched against Delx-owned probe receipts only.",
"maxLength": 120,
"minLength": 1,
"type": "string"
}
},
"required": [
"capability"
],
"type": "object"
},
"bodyType": {
"const": "json",
"type": "string"
},
"method": {
"const": "POST",
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"description": "Bounded trust-layer JSON; no secrets, no chain fetch, no remote execution.",
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"serviceName": "x402 Verified Directory",
"summary": "Find live x402 endpoints worth paying, by capability: returns only\nendpoints Delx has live-probed, each with liveness score, last-observed\ntimestamp, observed price, response-shape validity and Agents Hive ban-list\nstatus; every row cites its probe receipt, and ghost endpoints and dead\nquotes are filtered out before you spend.\nLimitation: observations, not endorsements — freshness is bounded by the\nlast probe cycle, and absence from the directory means unprobed, not unsafe.\n",
"tags": [
"x402",
"commerce",
"trust",
"probe-before-you-pay"
]
}
}Use it
curl
curl "https://api.delx.ai/api/v1/x402/verified-directory" # -> 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.delx.ai/api/v1/x402/verified-directory");
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.delx.ai/api/v1/x402/verified-directory")
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/4113.json, and this resource appears in /discovery/resources and /discovery/search.