Endpoint Playground
Test Crawlora's Polymarket activity by condition 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/condition/0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327/activity?limit=50&offset=0&taker_only=true&filter_type=CASH&filter_amount=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| condition_id (path) | string | Yes | 0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327 | Polymarket market condition id |
| limit | integer | No | 50 | Maximum trades, defaults to 50 and supports up to 100 |
| offset | integer | No | 0 | Result offset, defaults to 0 and supports up to 10000 |
| taker_only | string | No | true | Accepted for compatibility with the global activity contract; scoped upstream requests are filtered by condition id |
| filter_type | string | No | CASH | Activity amount filter type |
| filter_amount | string | No | 1 | Minimum filtered amount |
{
"code": 200,
"msg": "OK",
"data": {
"market": "0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327",
"limit": 2,
"offset": 0,
"filter_type": "CASH",
"filter_amount": "1",
"source_url": "https://data-api.polymarket.com/trades?filterAmount=1&filterType=CASH&limit=2&market=0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327&offset=0",
"trades": []
}
}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 normalized public trade rows for one Polymarket market condition id from credential-free Data API trades JSON. The `taker_only` enum accepts `true` and `false`; the `filter_type` enum accepts `CASH`; the `filter_amount` enum accepts `1`, `5`, `10`, `100`, `1000`, `10000`, and `100000`. This endpoint does not require a Polymarket user token, wallet signature, cookies, or personal account authentication.
{
"code": 200,
"msg": "OK",
"data": {
"market": "0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327",
"limit": 2,
"offset": 0,
"filter_type": "CASH",
"filter_amount": "1",
"source_url": "https://data-api.polymarket.com/trades?filterAmount=1&filterType=CASH&limit=2&market=0x1a987cd4e88488fd12905fa9ae82cef381e03f4af68289275c4c0c2613db9327&offset=0",
"trades": []
}
}curl "https://api.crawlora.net/api/v1/polymarket/market/condition/<condition_id>/activity" \
-H "x-api-key: $CRAWLORA_API_KEY"