The whole agentic-commerce trust dataset in one call: every audited x402 endpoint (trust s
The whole agentic-commerce trust dataset in one call: every audited x402 endpoint (trust score, scam flags, on-chain receiver, payTo/price history) AND every audited MCP server (safe/avoid, install-script risk, abandonment) plus incidents with on-chain proof. Cross-domain and longitudinal. NOTE: $1.00 exceeds the default 0.1 USDC cap in x402-fetch — pass maxValue. Free sample: /data/sample
1000000 (raw units)
price
2
calls / 30d
1
unique payers
2026-08-25
updated
Provider
pulsefeed.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "base",
"payTo": "0x7f5f784Ba98cEcFC0bA4336f0E48222A3d4d69a8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"all": "set to 1 to include dead/invalid x402 services",
"limit": "max x402 services (default 3000)"
},
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://pulsefeed.dev/data/full" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://pulsefeed.dev/data/full");
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://pulsefeed.dev/data/full")
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/14211.json, and this resource appears in /discovery/resources and /discovery/search.