Endpoint Playground
Test Crawlora's Polymarket event activity by id 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/event/id/30615/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 |
|---|---|---|---|---|
| id (path) | string | Yes | 30615 | Polymarket event 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 event id |
| filter_type | string | No | CASH | Activity amount filter type |
| filter_amount | string | No | 1 | Minimum filtered amount |
{
"code": 200,
"msg": "OK",
"data": {
"event_id": "30615",
"limit": 2,
"offset": 0,
"filter_type": "CASH",
"filter_amount": "1",
"source_url": "https://data-api.polymarket.com/trades?eventId=30615&filterAmount=1&filterType=CASH&limit=2&offset=0",
"trades": [
{
"side": "SELL",
"size": 12,
"price": 0.41,
"title": "World Cup Winner",
"event_slug": "world-cup-winner",
"outcome": "France"
}
]
}
}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 event 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": {
"event_id": "30615",
"limit": 2,
"offset": 0,
"filter_type": "CASH",
"filter_amount": "1",
"source_url": "https://data-api.polymarket.com/trades?eventId=30615&filterAmount=1&filterType=CASH&limit=2&offset=0",
"trades": [
{
"side": "SELL",
"size": 12,
"price": 0.41,
"title": "World Cup Winner",
"event_slug": "world-cup-winner",
"outcome": "France"
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/event/id/<id>/activity" \
-H "x-api-key: $CRAWLORA_API_KEY"