# Prediction Market Volume & Trade Count by Exchange (Time-Bucketed)

> Prediction Market Volume & Trade Count by Exchange (Time-Bucketed) is a paid API for AI agents from d2ngmd5yvdfkqu.cloudfront.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns time-bucketed prediction market trading volume and trade counts broken down by exchange for a specified time window and interval.

## Facts

- Endpoint: GET https://d2ngmd5yvdfkqu.cloudfront.net/market-overview
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prediction-market-volume-trade-count-by-exchange-time-bucketed-c35f067e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sBuWKtx2J1vKt-kSkUr3L

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 prediction-market-volume-trade-count-by-exchange-time-bucketed-c35f067e
```

Example prompt: Show me the hourly prediction market trading volume and trade counts broken down by exchange from January 1, 2025 at 00:00 UTC to January 7, 2025 at 00:00 UTC, using 1-hour buckets (3600000 ms intervals).

## When to prefer this

Use this endpoint when you need per-exchange granularity of prediction market volume and trade activity over a custom time range. Prefer this over the total-volume endpoint when you need to compare exchanges head-to-head or identify which platform is driving market activity. Best for analytics, dashboards, and monitoring trading concentration across prediction market venues.

## Known failure modes

- Missing required query params (from, to, interval) returns a 400 error
- Invalid ISO-8601 timestamp format causes a parsing error
- Interval value not in milliseconds or set to zero/negative causes bad request
- Time range too large or interval too small may result in timeout or truncated response
- Payment not attached or insufficient USDC balance returns 402 Payment Required
- Future timestamps may return empty buckets

## How this service works

Time-bucketed prediction market volume and trade-count by exchange.

## Output

A time-series dataset of prediction market activity segmented by exchange, where each bucket contains the trading volume (USD) and trade count for that exchange during the interval. Data is organized by time bucket and exchange identifier, enabling cross-platform volume comparisons over the requested period.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "from",
      "to",
      "interval"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "UTC end timestamp in ISO-8601 format."
      },
      "from": {
       "type": "string",
       "description": "UTC start timestamp in ISO-8601 format."
      },
      "interval": {
       "type": "string",
       "description": "Bucket size in milliseconds (e.g. 300000 = 5m, 3600000 = 1h)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prediction-market-volume-trade-count-by-exchange-time-bucketed-c35f067e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from d2ngmd5yvdfkqu.cloudfront.net](https://www.zero.xyz/host/d2ngmd5yvdfkqu.cloudfront.net/llms.txt)
