Endpoint Playground
Test Crawlora's Polymarket related tag rows by slug 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/tag/slug/crypto/related-tags/tags?omit_empty=true&status=active&locale=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | crypto | Polymarket tag slug |
| omit_empty | string | No | true | Omit empty related tags |
| status | string | No | active | Optional upstream status filter |
| 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 related tag rows from Polymarket's credential-free public Gamma related-tags/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/tag/slug/<slug>/related-tags/tags" \
-H "x-api-key: $CRAWLORA_API_KEY"