Endpoint Playground
Test Crawlora's Polymarket leaderboard 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/leaderboard?window=1d&sort_by=profit&limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| window | string | No | 1d | Leaderboard time window |
| sort_by | string | No | profit | Leaderboard sort |
| limit | integer | No | 20 | Maximum rows, defaults to 20 and supports up to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"window": "30d",
"sort_by": "profit",
"limit": 2,
"source_url": "https://data-api.polymarket.com/v1/leaderboard?limit=2&sortBy=profit&window=30d",
"fetched_at": "2026-06-07T11:00:00Z",
"rows": [
{
"rank": "1",
"proxy_wallet": "0x4bff30af91642dc7d2b19a8664378fe55c45fc26",
"user_name": "Sassy-Bucket",
"verified_badge": false,
"volume": 770358.109102,
"profit_loss": 322870.79601
}
]
}
}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 trader leaderboard rows from Polymarket's credential-free Data API leaderboard JSON. The `window` enum accepts `1d`, `7d`, `30d`, and `all`; the `sort_by` enum accepts `profit` and `volume`.
{
"code": 200,
"msg": "OK",
"data": {
"window": "30d",
"sort_by": "profit",
"limit": 2,
"source_url": "https://data-api.polymarket.com/v1/leaderboard?limit=2&sortBy=profit&window=30d",
"fetched_at": "2026-06-07T11:00:00Z",
"rows": [
{
"rank": "1",
"proxy_wallet": "0x4bff30af91642dc7d2b19a8664378fe55c45fc26",
"user_name": "Sassy-Bucket",
"verified_badge": false,
"volume": 770358.109102,
"profit_loss": 322870.79601
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/leaderboard" \
-H "x-api-key: $CRAWLORA_API_KEY"