Use when an agent needs bazaar category heat
Use when an agent needs bazaar category heat. Returns x402 Bazaar category heat map: every listing in the latest daily full-catalogue snapshot classified into 9 categories (search/scrape, crypto-data, ai-inference, social-data, verification, compute/browser, agent-tools, enrichment, other) with listing counts, settled 30d calls, unique payers and listing share per category. $0.003.
3000 (raw units)
price
16
calls / 30d
9
unique payers
2026-09-16
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "3000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-10",
"categories": [
{
"calls_30d": 98230,
"category": "crypto-data",
"listings": 4210,
"payers_30d": 8120,
"share": 0.2902
},
{
"calls_30d": 61450,
"category": "search/scrape",
"listings": 2130,
"payers_30d": 4530,
"share": 0.1468
},
{
"calls_30d": 40110,
"category": "ai-inference",
"listings": 1890,
"payers_30d": 3010,
"share": 0.1303
},
{
"calls_30d": 18990,
"category": "agent-tools",
"listings": 1240,
"payers_30d": 1470,
"share": 0.0855
},
{
"calls_30d": 12840,
"category": "social-data",
"listings": 980,
"payers_30d": 990,
"share": 0.0676
},
{
"calls_30d": 9210,
"category": "enrichment",
"listings": 760,
"payers_30d": 640,
"share": 0.0524
},
{
"calls_30d": 7350,
"category": "compute/browser",
"listings": 540,
"payers_30d": 480,
"share": 0.0372
},
{
"calls_30d": 5120,
"category": "verification",
"listings": 410,
"payers_30d": 350,
"share": 0.0283
},
{
"calls_30d": 4890,
"category": "other",
"listings": 2345,
"payers_30d": 410,
"share": 0.1617
}
],
"generated_at": "2026-08-10T12:00:00.000Z"
},
"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": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"as_of": {
"type": "string"
},
"categories": {
"items": {
"properties": {
"calls_30d": {
"type": "integer"
},
"category": {
"type": "string"
},
"listings": {
"type": "integer"
},
"payers_30d": {
"type": "integer"
},
"share": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"generated_at": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/bazaar-category-heat" # -> 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.oblique.markets/api/v1/paid/bazaar-category-heat");
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.oblique.markets/api/v1/paid/bazaar-category-heat")
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/497.json, and this resource appears in /discovery/resources and /discovery/search.