Endpoint Playground
Test Crawlora's Polymarket token prices 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/tokens/prices" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| body (body) | object | Yes | Token ids request body |
{
"code": 200,
"msg": "OK",
"data": {
"token_ids": [
"81927025054404355287140018940169293739219157042658469116956164881873598220211"
],
"prices": [
{
"token_id": "81927025054404355287140018940169293739219157042658469116956164881873598220211",
"buy_price": 0.03,
"sell_price": 0.54
}
]
}
}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 buy and sell prices for up to 25 Polymarket token ids. The `side` enum accepts `buy` and `sell`; when omitted, both sides are returned. This uses credential-free public CLOB market-data JSON and does not require a Polymarket user token, wallet signature, cookies, or personal account authentication.
{
"code": 200,
"msg": "OK",
"data": {
"token_ids": [
"81927025054404355287140018940169293739219157042658469116956164881873598220211"
],
"prices": [
{
"token_id": "81927025054404355287140018940169293739219157042658469116956164881873598220211",
"buy_price": 0.03,
"sell_price": 0.54
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/tokens/prices" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"