Trending Cards Feed: returns the top trading cards by market activity (30-day sales volume
Trending Cards Feed: returns the top trading cards by market activity (30-day sales volume, views, price velocity). Covers all 25 supported TCG games. Useful for autonomous buy/sell agents tracking market momentum and identifying emerging opportunities.
25000 (raw units)
price
4
calls / 30d
3
unique payers
2026-09-11
updated
Provider
oracle.the-undesirables.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x642e8a7C289381f24f0395e0539f0bA41c74Cc1B",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "25000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GueVKFK4VNe4LYvMoYAKpnJe8s7Yar6FF3r1f92gfm9y",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "25000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:4663",
"payTo": "0x642e8a7C289381f24f0395e0539f0bA41c74Cc1B",
"asset": "0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168",
"amount": "25000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"game": "Pokemon",
"limit": 50
},
"type": "http"
},
"output": {
"example": {
"data": {
"results": 50,
"trending": []
},
"status": "ok",
"tool": "trending_cards"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"game": {
"description": "Filter by game (empty = all games)",
"type": "string"
},
"limit": {
"description": "Number of results (1-100)",
"type": "integer"
},
"min_price": {
"description": "Minimum card price to include",
"type": "number"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"type": "object"
},
"status": {
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://oracle.the-undesirables.com/api/v1/trending" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://oracle.the-undesirables.com/api/v1/trending");
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://oracle.the-undesirables.com/api/v1/trending")
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/3423.json, and this resource appears in /discovery/resources and /discovery/search.