Endpoint Playground
Test Crawlora's Polymarket market liquidity 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/market/558934/liquidity" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 558934 | Polymarket market id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "558934",
"market": {
"id": "558934",
"question": "Will Spain win the 2026 FIFA World Cup?"
},
"tokens": [
{
"outcome": "Yes",
"midpoint": 0.16,
"spread": 0.01
}
]
}
}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 a public market liquidity snapshot that joins Gamma market detail with credential-free public CLOB market-data reads when token ids are available. This endpoint is not a trading endpoint and does not require a Polymarket user token, wallet signature, cookies, or personal account authentication.
{
"code": 200,
"msg": "OK",
"data": {
"id": "558934",
"market": {
"id": "558934",
"question": "Will Spain win the 2026 FIFA World Cup?"
},
"tokens": [
{
"outcome": "Yes",
"midpoint": 0.16,
"spread": 0.01
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/market/<id>/liquidity" \
-H "x-api-key: $CRAWLORA_API_KEY"