Endpoint Playground
Test Crawlora's Polymarket token midpoint 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/midpoint" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| token_id (path) | string | Yes | 81927025054404355287140018940169293739219157042658469116956164881873598220211 | Polymarket CLOB token id |
{
"code": 200,
"msg": "OK",
"data": {
"token_id": "81927025054404355287140018940169293739219157042658469116956164881873598220211",
"midpoint": 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 the public CLOB midpoint for one Polymarket token id.
{
"code": 200,
"msg": "OK",
"data": {
"token_id": "81927025054404355287140018940169293739219157042658469116956164881873598220211",
"midpoint": 0.285
}
}curl "https://api.crawlora.net/api/v1/polymarket/token/<token_id>/midpoint" \
-H "x-api-key: $CRAWLORA_API_KEY"