List Events
Retrieve a list of sports events with filtering by sport type, date range, and event status.
Method, path, and environment
https://api.altsportsdata.com/api/v1/public/eventsUse the right pane to validate the route
Choose a language and confirm the environment or base URL.
Paste your API key, then fill in path or query parameters.
Run the request and inspect the live response without leaving this page.
Query Parameters
Filter events starting from this date (ISO 8601)
Filter events up to this date (ISO 8601)
Filter by sport type (see enum below)
Sort order: ASC or DESC (default: DESC)
Filter by event status (multiple allowed)
Responses
200OK
OK
Response body
{
"data": [
{
"id": "f1-bahrain-gp-2026",
"name": "Bahrain Grand Prix",
"sportType": "f1",
"eventStatus": "UPCOMING",
"startDate": "2026-03-15T15:00:00Z",
"endDate": "2026-03-15T17:00:00Z",
"venue": {
"name": "Bahrain International Circuit",
"location": "Sakhir, Bahrain"
},
"participants": 20,
"marketsAvailable": 15
}
]
}One of the request parameters is invalid. See the returned message for details.
Authentication headers are missing or invalid. Make sure you authenticate your request with a valid API key.
The requested resource is forbidden.
Too many requests. You hit the rate limit. Use the X-RateLimit headers to confirm when you can retry.
Internal server error. Retry later, and contact support if the issue persists.