# Bazaar Price Bands

> Bazaar Price Bands is a paid API for AI agents from pastable-x402.pages.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a statistical distribution of API pricing across Bazaar marketplace listings, including price band counts, median, p90, min, and max USD prices.

## Facts

- Endpoint: GET https://pastable-x402.pages.dev/bazaar/price-bands
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bazaar-price-bands-556bdce0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NurjkdEAwy4ebkmmh1Jt_

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 bazaar-price-bands-556bdce0
```

Example prompt: Can you pull the current price band breakdown from the Bazaar marketplace so I can see how my $0.05 per call API compares to what other APIs are charging?

## When to prefer this

Use this endpoint when you need a quick statistical snapshot of how APIs are priced across the Bazaar/x402 marketplace — especially for competitive benchmarking, budget planning for agent workflows that call multiple APIs, or market research on the x402 ecosystem. Prefer this over scraping individual listings when you need aggregate distribution data rather than per-API details.

## Known failure modes

- Payment not included or invalid x402 payment on Base mainnet returns 402 Payment Required
- Stale data if the marketplace index has not been recently refreshed
- Empty or zero listings if the Bazaar index is unavailable
- Network errors from Cloudflare Pages edge if the origin is unreachable

## How this service works

Pay-per-call utility APIs for agents: EVM helpers (checksum, unit conversion, keccak), data transforms (CSV to JSON, JSON diff, URL canonicalisation), text tools (hashing, JWT decode), and Bazaar market intelligence. x402 on Base mainnet.

## Output

A JSON object with price band bucket counts (under 1c, 1c–5c, 5c–25c, 25c–$1, over $1), the total number of priced listings, and summary statistics including min, max, median, and p90 prices in USD across all Bazaar marketplace API listings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bands": {
   "1c_to_5c": 17,
   "under_1c": 70,
   "5c_to_25c": 5,
   "over_1usd": 4,
   "25c_to_1usd": 4
  },
  "max_usd": 1000,
  "min_usd": 0.001,
  "p90_usd": 0.14,
  "median_usd": 0.005,
  "priced_listings": 100
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bazaar-price-bands-556bdce0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pastable-x402.pages.dev](https://www.zero.xyz/host/pastable-x402.pages.dev/llms.txt)
