Endpoint Playground
Test Crawlora's Polymarket fee types 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/fee-types?active=true&search=sports" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| active | string | No | true | Optional upstream active filter |
| search | string | No | sports | Optional upstream search filter |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"data": []
}
}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 public fee type data from Polymarket Gamma. This is a normalized wrapper around credential-free public JSON.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"data": []
}
}curl "https://api.crawlora.net/api/v1/polymarket/fee-types" \
-H "x-api-key: $CRAWLORA_API_KEY"