# Polymarket Outcome Token OHLCV Candlestick Data

> Polymarket Outcome Token OHLCV Candlestick Data is a paid API for AI agents from sol.blockrun.ai, paid per call via x402, $0.0095/call, status unknown (last checked 2026-09-14).

Returns historical OHLCV (open, high, low, close, volume) candlestick data for a specific Polymarket outcome token identified by its token ID

## Facts

- Endpoint: GET https://sol.blockrun.ai/api/v1/pm/polymarket/candlesticks/token/70060007759742302808850203923230495967841006347410479320265457231119910877637
- Price: $0.0095/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-outcome-token-ohlcv-candlestick-data-e5ea4128
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kjaKMlv-2DVCt8gXAsuwn

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 polymarket-outcome-token-ohlcv-candlestick-data-e5ea4128
```

Example prompt: Can you pull the historical OHLCV candlestick data for Polymarket outcome token 70060007759742302808850203923230495967841006347410479320265457231119910877637 so I can chart how the price has moved over time?

## When to prefer this

Use this endpoint when you need OHLCV price history for a specific Polymarket outcome token (identified by token ID) rather than a full market. Prefer this over the market-level candlestick endpoint when you want price data scoped to one side of a binary market (e.g., just the YES token). Best for charting, backtesting, and volatility analysis at the token level.

## Known failure modes

- Invalid or non-existent token ID returns an error or empty dataset
- Token ID format mismatch causes a 400 or 422 error
- Rate limit or payment failure returns a 402 error requiring USDC payment
- Token with no trading history returns empty candlestick array
- Network timeout or upstream Polymarket API outage causes a 503 error

## How this service works

Get historical OHLCV candlestick data for a single outcome token

## Output

An object containing historical OHLCV candlestick records for the specified outcome token, including timestamps, open, high, low, close prices, and trading volume for each candle period.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-outcome-token-ohlcv-candlestick-data-e5ea4128/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sol.blockrun.ai](https://www.zero.xyz/host/sol.blockrun.ai/llms.txt)
