Skip to main content
GET
/
polymarket
/
asset-history
Get Asset Price History
curl --request GET \
  --url https://api.struct.to/v1/polymarket/asset-history
[
  {
    "asset_symbol": "<string>",
    "asset_open_price": 123,
    "asset_close_price": 123,
    "variant": "<string>",
    "start_time": 123,
    "end_time": 123,
    "price_change_percentage": 123,
    "outcome": "<string>"
  }
]

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

asset_symbol
enum<string>
required

Asset ticker: BTC, ETH, XRP, SOL, DOGE, BNB, HYPE

Available options:
BTC,
ETH,
XRP,
SOL,
DOGE,
BNB,
HYPE
variant
enum<string>
required

Time window: 5m, 15m, 1h, 4h, 1d

Available options:
5m,
15m,
1h,
4h,
1d
from
integer<int64>

Start timestamp in seconds (Unix epoch, inclusive)

to
integer<int64>

End timestamp in seconds (Unix epoch, inclusive)

limit
integer<int64>

Number of results (default: 10, max: 100)

pagination_key
string

Cursor from previous response for keyset pagination. Pass the pagination_key from the previous page to fetch the next page.

Response

Successful response

asset_symbol
string
required
asset_open_price
number<double>
required

Opening price at start_time (cast to f64 from NUMERIC in query)

asset_close_price
number<double>
required

Closing price at end_time (cast to f64 from NUMERIC in query)

variant
string
required

Time window: "5m", "15m", "1h", "1d"

start_time
integer<int64>
required

Window start timestamp (seconds since epoch)

end_time
integer<int64>
required

Window end timestamp (seconds since epoch)

price_change_percentage
number<double> | null
outcome
string | null

Generated column: "up" if close > open, "down" if close ≤ open, null if no close yet

Last modified on May 1, 2026