Use when an agent needs bazaar price stats
Use when an agent needs bazaar price stats. Returns x402 Bazaar price distribution across the latest daily full-catalogue snapshot: min/p25/p50/p75/p90/max in atomic units and USD, USD price bands with shares, and per-network listing counts with median price. Optional ?network= filter. $0.002.
2000 (raw units)
price
20
calls / 30d
12
unique payers
2026-09-17
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": "2000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "2000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"network": "Optional network filter (e.g. 'base', 'solana'); omit for al"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-10",
"atomic": {
"max": 5000000000,
"min": 10,
"p25": 1000,
"p50": 5000,
"p75": 20000,
"p90": 100000
},
"bands": [
{
"count": 3121,
"label": "<0.001",
"share": 0.2232
},
{
"count": 4482,
"label": "0.001-0.005",
"share": 0.3205
},
{
"count": 3350,
"label": "0.005-0.02",
"share": 0.2396
},
{
"count": 1904,
"label": "0.02-0.1",
"share": 0.1362
},
{
"count": 862,
"label": "0.1-1",
"share": 0.0616
},
{
"count": 265,
"label": "1+",
"share": 0.019
}
],
"by_network": [
{
"median_atomic": 5000,
"n": 11208,
"network": "base"
},
{
"median_atomic": 4000,
"n": 2776,
"network": "solana"
}
],
"generated_at": "2026-08-10T12:00:00.000Z",
"n": 13984,
"usd": {
"max": 5000,
"min": 0.00001,
"p25": 0.001,
"p50": 0.005,
"p75": 0.02,
"p90": 0.1
}
},
"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": {
"network": {
"description": "Optional network filter (e.g. 'base', 'solana'); omit for all networks.",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"as_of": {
"type": "string"
},
"atomic": {
"properties": {
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"p25": {
"type": "integer"
},
"p50": {
"type": "integer"
},
"p75": {
"type": "integer"
},
"p90": {
"type": "integer"
}
},
"type": "object"
},
"bands": {
"items": {
"properties": {
"count": {
"type": "integer"
},
"label": {
"type": "string"
},
"share": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"by_network": {
"items": {
"properties": {
"median_atomic": {
"type": "integer"
},
"n": {
"type": "integer"
},
"network": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"generated_at": {
"type": "string"
},
"n": {
"type": "integer"
},
"usd": {
"properties": {
"max": {
"type": "integer"
},
"min": {
"type": "number"
},
"p25": {
"type": "number"
},
"p50": {
"type": "number"
},
"p75": {
"type": "number"
},
"p90": {
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/bazaar-price-stats" # -> 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-price-stats");
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-price-stats")
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/495.json, and this resource appears in /discovery/resources and /discovery/search.