Endpoint Playground
Test Crawlora's Ticketmaster discover categories 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/ticketmaster/discover-categories?section=all" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| section | string | No | all | Discover section |
| page | integer | No | One-based page | |
| per_page | integer | No | Categories per page |
{
"code": 200,
"data": {
"section": "sports",
"page": 1,
"total": 54,
"categories": [
{
"id": "KZFzniwnSyZfZ7v7nE",
"name": "Sports",
"major": true
}
]
}
}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.
Lists every current Concerts, Sports, Arts & Theater, and Family category with pagination. Section accepts `all`, `concerts`, `sports`, `arts-theater`, and `family`.
{
"code": 200,
"data": {
"section": "sports",
"page": 1,
"total": 54,
"categories": [
{
"id": "KZFzniwnSyZfZ7v7nE",
"name": "Sports",
"major": true
}
]
}
}curl "https://api.crawlora.net/api/v1/ticketmaster/discover-categories" \
-H "x-api-key: $CRAWLORA_API_KEY"