Endpoint Playground
Test Crawlora's Polymarket token price history API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/polymarket/token/81927025054404355287140018940169293739219157042658469116956164881873598220211/price-history?interval=1m&fidelity=60&start_ts=1780754400&end_ts=1780840800" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| token_id (path) | string | Yes | 81927025054404355287140018940169293739219157042658469116956164881873598220211 | Polymarket CLOB token id |
| interval | string | No | 1m | History interval |
| fidelity | integer | No | 60 | Data point resolution in minutes; 0 uses the default 60; maximum 1440 |
| start_ts | integer | No | 1780754400 | Optional Unix timestamp lower bound |
| end_ts | integer | No | 1780840800 | Optional Unix timestamp upper bound |
{
"code": 200,
"msg": "OK",
"data": {
"token_id": "81927025054404355287140018940169293739219157042658469116956164881873598220211",
"interval": "1d",
"fidelity": 60,
"points": [
{
"timestamp": 1780826405,
"price": 0.48
},
{
"timestamp": 1780839303,
"price": 0.285
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns public CLOB price-history points for one Polymarket token id.
{
"code": 200,
"msg": "OK",
"data": {
"token_id": "81927025054404355287140018940169293739219157042658469116956164881873598220211",
"interval": "1d",
"fidelity": 60,
"points": [
{
"timestamp": 1780826405,
"price": 0.48
},
{
"timestamp": 1780839303,
"price": 0.285
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/token/<token_id>/price-history" \
-H "x-api-key: $CRAWLORA_API_KEY"