Endpoint Playground
Test Crawlora's Polymarket activity trades 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/activity/trades?limit=50&offset=0&taker_only=true&filter_type=CASH&filter_amount=1&event_id=101772&market=0x3f2604d62ac3ee496ffd6d30156f30663fbaf22097f17f09d7364c35db255d2b" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 | Taker-only filter |
| filter_type | string | No | CASH | Activity amount filter type |
| filter_amount | string | No | 1 | Minimum filtered amount |
| event_id | string | No | 101772 | Optional Polymarket event id |
| market | string | No | 0x3f2604d62ac3ee496ffd6d30156f30663fbaf22097f17f09d7364c35db255d2b | Optional market condition id |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 2,
"offset": 0,
"taker_only": "true",
"filter_type": "CASH",
"filter_amount": "1",
"source_url": "https://data-api.polymarket.com/trades?filterAmount=1&filterType=CASH&limit=2&offset=0&takerOnly=true",
"fetched_at": "2026-06-07T11:00:00Z",
"trades": [
{
"proxy_wallet": "0x400e9b5e37f7209adb6938d49d63c48f154319d2",
"side": "BUY",
"size": 25,
"price": 0.52744,
"value": 13.186,
"title": "Bitcoin Up or Down - June 7, 8:30AM-8:45AM ET",
"event_slug": "btc-updown-15m-1780835400",
"outcome": "Up"
}
]
}
}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 used by Polymarket's `/activity` page 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`.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 2,
"offset": 0,
"taker_only": "true",
"filter_type": "CASH",
"filter_amount": "1",
"source_url": "https://data-api.polymarket.com/trades?filterAmount=1&filterType=CASH&limit=2&offset=0&takerOnly=true",
"fetched_at": "2026-06-07T11:00:00Z",
"trades": [
{
"proxy_wallet": "0x400e9b5e37f7209adb6938d49d63c48f154319d2",
"side": "BUY",
"size": 25,
"price": 0.52744,
"value": 13.186,
"title": "Bitcoin Up or Down - June 7, 8:30AM-8:45AM ET",
"event_slug": "btc-updown-15m-1780835400",
"outcome": "Up"
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/activity/trades" \
-H "x-api-key: $CRAWLORA_API_KEY"