Endpoint Playground
Test Crawlora's Polymarket token spreads 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/spreads" \
-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"
],
"spreads": [
{
"token_id": "81927025054404355287140018940169293739219157042658469116956164881873598220211",
"spread": 0.51
}
]
}
}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 spreads for up to 25 Polymarket token ids. 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"
],
"spreads": [
{
"token_id": "81927025054404355287140018940169293739219157042658469116956164881873598220211",
"spread": 0.51
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/tokens/spreads" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"