Skip to main content
GET
/
polymarket
/
market
/
chart
Get market chart
curl --request GET \
  --url https://api.struct.to/v1/polymarket/market/chart
[
  {
    "position_id": "<string>",
    "name": "<string>",
    "outcome_index": 123,
    "data": [
      {
        "v": 123,
        "t": 1
      }
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.struct.to/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

condition_id
string

Market condition ID or market_slug (one required)

market_slug
string

Market slug (alternative to condition_id)

position_ids
string

Comma-separated list of position IDs (max 4, optional). Auto-selected if not provided

resolution
enum<string>
required

Time interval with implicit lookback: 1H (1 hour), 6H (6 hours), 1D (1 day), 1W (1 week), 1M (30 days), ALL (all data) (required)

Available options:
1H,
6H,
1D,
1W,
1M,
ALL

Response

200 - application/json

Price data over time for up to 4 market outcomes

position_id
string
required
name
string
required
outcome_index
integer<int32>
required
data
object[]
required
Last modified on May 1, 2026