# Predge Whale Data – Market Price/Volume History

> Predge Whale Data – Market Price/Volume History is a paid API for AI agents from x402-api-production-266e.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns daily-bucketed trade-print price and volume history (including whale volume) for a specific Polymarket prediction market, plus up to 200 individual prints and resolution status.

## Facts

- Endpoint: GET https://x402-api-production-266e.up.railway.app/v1/markets/:conditionId/history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predge-whale-data-market-price-volume-history-46239c8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a6WSyRllArZGbXZAp06sl

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 predge-whale-data-market-price-volume-history-46239c8d
```

Example prompt: Pull the 30-day daily price and whale volume history for the Polymarket market with condition ID 0x3a4e8d6b1f2c9a7b5e0d3f2a1c8b7d9e6f4a2c1b and tell me if it's been resolved yet.

## When to prefer this

Use this endpoint when you need time-series price and volume data — including whale-specific volume breakdowns — for a single Polymarket market identified by condition ID. Prefer this over the whale-activity-only endpoint when you need the full daily price series, bucket-level aggregation, individual trade prints, and/or resolution metadata for charting or trend analysis.

## Known failure modes

- 404 returned (not charged) if the condition ID is unknown or not tracked
- Invalid window value returns an error (must be 7d, 30d, or all)
- Condition ID format errors if not a valid 0x… hex address
- 'all' window is bounded to 180 days of data, not unlimited history
- 15-minute delay means very recent prints may be missing

## How this service works

Price/volume history for one Polymarket market (path param: 0x… condition id). Trade-print price series in daily buckets (price normalized to the YES side, NOT orderbook quotes — outcome_verified.flow: false) with per-bucket volume and whale volume, plus up to 200 individual prints; includes resolution/resolved_at straight off the markets row when settled (outcome_verified.resolution: true). Query param: window (7d|30d|all, default 30d — "all" bounded to 180 days). 15 min delay. 404 (not charged) if unknown.

## Output

A time series of daily buckets each containing the trade-print YES-side normalized price, total volume, and whale volume; up to 200 individual trade prints; and resolution metadata (resolution status and resolved_at timestamp if settled). Data has a 15-minute delay.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "window": {
       "enum": [
        "7d",
        "30d",
        "all"
       ],
       "type": "string",
       "description": "Lookback window (default 30d)"
      }
     }
    }
   },
   "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/predge-whale-data-market-price-volume-history-46239c8d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-production-266e.up.railway.app](https://www.zero.xyz/host/x402-api-production-266e.up.railway.app/llms.txt)
