Endpoint Playground
Test Crawlora's List Polymarket tags 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/tags?limit=25&offset=0&order=volume24hr&ascending=true&locale=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | 25 | Maximum tags, defaults to 25 and supports up to 100 |
| offset | integer | No | 0 | Result offset, defaults to 0 and supports up to 10000 |
| order | string | No | volume24hr | Sort field |
| ascending | string | No | true | Sort ascending flag |
| locale | string | No | en | Optional upstream locale |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"tags": []
}
}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 tag rows from Polymarket's credential-free public Gamma tags JSON.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"tags": []
}
}curl "https://api.crawlora.net/api/v1/polymarket/tags" \
-H "x-api-key: $CRAWLORA_API_KEY"