available
GET /v1/market/hot-categories
Find active x402 categories with payer density
Example input
{
"limit": 10
}
OpenAPI
| x402 metadata
| Buyer example
Get 402 Challenge
Why pay $0.0200?
Use this when deciding whether to buy, list, price, or benchmark an x402 endpoint.
The public page shows the market summary; the paid response gives route-specific decision fields.
You are paying for normalized comparison, price position, payer/call density, GMV estimate, confidence, and source trail.
Open route-specific buyer CTA
Unpaid 402 probe
curl -i "https://pricepilot402.pricepilot402-arya.workers.dev/v1/market/hot-categories?limit=10&pp_ref=dist_view_14588bd7-3ef3-4463-afd7-6a018bfdc4b5"
const response = await fetch("https://pricepilot402.pricepilot402-arya.workers.dev/v1/market/hot-categories?limit=10&pp_ref=dist_view_14588bd7-3ef3-4463-afd7-6a018bfdc4b5", {});
console.log(response.status);
if (response.status === 402) {
console.log(response.headers.get("PAYMENT-REQUIRED"));
}
Paid retry placeholder
curl -i "https://pricepilot402.pricepilot402-arya.workers.dev/v1/market/hot-categories?limit=10&pp_ref=dist_view_14588bd7-3ef3-4463-afd7-6a018bfdc4b5" \
-H "PAYMENT-SIGNATURE: <x402 payment proof>"
const response = await fetch("https://pricepilot402.pricepilot402-arya.workers.dev/v1/market/hot-categories?limit=10&pp_ref=dist_view_14588bd7-3ef3-4463-afd7-6a018bfdc4b5", {
"method": "GET",
"headers": {
"PAYMENT-SIGNATURE": "<x402 payment proof>"
}
});
console.log(response.status);
if (response.status === 402) {
console.log(response.headers.get("PAYMENT-REQUIRED"));
}
available
GET /v1/market/top-gmv
Estimate visible GMV for x402 endpoints. Rank Base USDC x402 API categories by market activity
Example input
{
"limit": 10
}
OpenAPI
| x402 metadata
| Buyer example
Get 402 Challenge
Why pay $0.0500?
Use this when deciding whether to buy, list, price, or benchmark an x402 endpoint.
The public page shows the market summary; the paid response gives route-specific decision fields.
You are paying for normalized comparison, price position, payer/call density, GMV estimate, confidence, and source trail.
Open route-specific buyer CTA
Unpaid 402 probe
curl -i "https://pricepilot402.pricepilot402-arya.workers.dev/v1/market/top-gmv?limit=10&pp_ref=dist_view_14588bd7-3ef3-4463-afd7-6a018bfdc4b5"
const response = await fetch("https://pricepilot402.pricepilot402-arya.workers.dev/v1/market/top-gmv?limit=10&pp_ref=dist_view_14588bd7-3ef3-4463-afd7-6a018bfdc4b5", {});
console.log(response.status);
if (response.status === 402) {
console.log(response.headers.get("PAYMENT-REQUIRED"));
}
Paid retry placeholder
curl -i "https://pricepilot402.pricepilot402-arya.workers.dev/v1/market/top-gmv?limit=10&pp_ref=dist_view_14588bd7-3ef3-4463-afd7-6a018bfdc4b5" \
-H "PAYMENT-SIGNATURE: <x402 payment proof>"
const response = await fetch("https://pricepilot402.pricepilot402-arya.workers.dev/v1/market/top-gmv?limit=10&pp_ref=dist_view_14588bd7-3ef3-4463-afd7-6a018bfdc4b5", {
"method": "GET",
"headers": {
"PAYMENT-SIGNATURE": "<x402 payment proof>"
}
});
console.log(response.status);
if (response.status === 402) {
console.log(response.headers.get("PAYMENT-REQUIRED"));
}