# Oblique Markets Bazaar Price Stats

> Oblique Markets Bazaar Price Stats is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns price distribution statistics (min/percentiles/max) for x402 Bazaar listings across all networks or a specific network, including USD price bands and per-network listing counts.

## Facts

- Endpoint: GET https://api.oblique.markets/api/v1/paid/bazaar-price-stats
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-bazaar-price-stats-6092d06b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vnUTIdINkCyokHX3Vu3EF

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability oblique-markets-bazaar-price-stats-6092d06b
```

Example prompt: Can you pull the latest price distribution stats from the x402 Bazaar — I want to see the median, percentiles, and how listings break down by USD price band, filtered to Base network?

## When to prefer this

Use this endpoint when you need aggregate price intelligence across the x402 Bazaar marketplace — such as benchmarking a new listing price, understanding market spread, or analyzing network-level activity. Prefer it over individual listing endpoints when you want statistical summaries rather than per-listing details. The optional network filter makes it ideal for single-chain analysis.

## Known failure modes

- Invalid network filter value returns an error or empty result
- Stale snapshot if daily refresh has not yet completed
- Network not found returns empty per-network counts
- Service unavailable if upstream data pipeline is down
- Payment required (402) if x402 payment header is missing or invalid

## How this service works

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.

## Output

A snapshot of price distribution statistics for all x402 Bazaar listings in the latest daily full-catalogue snapshot, including: min/p25/p50/p75/p90/max prices in both atomic units and USD, USD price band buckets with market share percentages, and per-network listing counts with median prices. Optionally scoped to a single network via the ?network= query parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "network": {
       "type": "string",
       "description": "Optional network filter (e.g. 'base', 'solana'); omit for all networks."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "n": {
     "type": "integer"
    },
    "usd": {
     "type": "object",
     "properties": {
      "max": {
       "type": "integer"
      },
      "min": {
       "type": "number"
      },
      "p25": {
       "type": "number"
      },
      "p50": {
       "type": "number"
      },
      "p75": {
       "type": "number"
      },
      "p90": {
       "type": "number"
      }
     }
    },
    "as_of": {
     "type": "string"
    },
    "bands": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "count": {
        "type": "integer"
       },
       "label": {
        "type": "string"
       },
       "share": {
        "type": "number"
       }
      }
     }
    },
    "atomic": {
     "type": "object",
     "properties": {
      "max": {
       "type": "integer"
      },
      "min": {
       "type": "integer"
      },
      "p25": {
       "type": "integer"
      },
      "p50": {
       "type": "integer"
      },
      "p75": {
       "type": "integer"
      },
      "p90": {
       "type": "integer"
      }
     }
    },
    "by_network": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "n": {
        "type": "integer"
       },
       "network": {
        "type": "string"
       },
       "median_atomic": {
        "type": "integer"
       }
      }
     }
    },
    "generated_at": {
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "n": 13984,
  "usd": {
   "max": 5000,
   "min": 0.00001,
   "p25": 0.001,
   "p50": 0.005,
   "p75": 0.02,
   "p90": 0.1
  },
  "as_of": "2026-08-10",
  "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
   }
  ],
  "atomic": {
   "max": 5000000000,
   "min": 10,
   "p25": 1000,
   "p50": 5000,
   "p75": 20000,
   "p90": 100000
  },
  "by_network": [
   {
    "n": 11208,
    "network": "base",
    "median_atomic": 5000
   },
   {
    "n": 2776,
    "network": "solana",
    "median_atomic": 4000
   }
  ],
  "generated_at": "2026-08-10T12:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-bazaar-price-stats-6092d06b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
