Conservative CPSC product-recall evidence
Conservative CPSC product-recall evidence
200000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated
Provider
experiment-008-production.up.railway.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xF21563B76cC165F337b67D9f304D4c60eADbbaa4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"agentServicesQuote": {
"operation": "build_product_recall_evidence",
"payment": {
"amount": "200000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"currency": "USDC",
"network": "eip155:8453",
"payTo": "0xF21563B76cC165F337b67D9f304D4c60eADbbaa4",
"price": "$0.20"
},
"schemaVersion": 1,
"scope": {
"method": "POST",
"resource": "/x402/v1/product-recalls/evidence"
}
},
"bazaar": {
"info": {
"input": {
"body": {
"idempotency_key": "buyer-generated-request-008",
"product_token": "opaque-product-handle",
"recovery_key": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"limitation": "Published recall-notice match only.",
"match_status": "matched",
"recall_number": "00-000",
"source": {},
"tool": "match_product_recall"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"idempotency_key": {
"maxLength": 128,
"minLength": 8,
"type": "string"
},
"product_token": {
"type": "string"
},
"recovery_key": {
"pattern": "^[0-9a-f]{64}$",
"type": "string"
},
"subject": {
"type": "string"
}
},
"required": [
"product_token",
"idempotency_key",
"recovery_key"
],
"type": "object"
},
"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"
}
}
}Use it
curl
curl "https://experiment-008-production.up.railway.app/x402/v1/product-recalls/evidence" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://experiment-008-production.up.railway.app/x402/v1/product-recalls/evidence");
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://experiment-008-production.up.railway.app/x402/v1/product-recalls/evidence")
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/14318.json, and this resource appears in /discovery/resources and /discovery/search.