Endpoint Playground
Test Crawlora's Polymarket market liquidity by slug 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/slug/nba-sas-nyk-2026-06-08/liquidity" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | nba-sas-nyk-2026-06-08 | Polymarket market slug |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "nba-sas-nyk-2026-06-08",
"market": {
"slug": "nba-sas-nyk-2026-06-08"
},
"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": {
"slug": "nba-sas-nyk-2026-06-08",
"market": {
"slug": "nba-sas-nyk-2026-06-08"
},
"tokens": [
{
"outcome": "Yes",
"midpoint": 0.16,
"spread": 0.01
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/market/slug/<slug>/liquidity" \
-H "x-api-key: $CRAWLORA_API_KEY"