Event Participants
Fetch the list of athletes/participants for an event
Endpoint overview
Fetch the list of athletes/participants for an event
Route
GET
/api/v1/public/events/{eventId}/participantsAuthentication
Required. Use `X-API-KEY` header.
Path Parameters
Path parameters identify the specific resource in the route. Keep these values aligned with the item you want to inspect.
eventIdstringrequiredUnique event identifier
Responses
Example Response
{
"data": [
{"id": "verstappen-max", "name": "Max Verstappen", "team": "Red Bull Racing", "number": 1},
{"id": "hamilton-lewis", "name": "Lewis Hamilton", "team": "Ferrari", "number": 44}
]
}400One of the request parameters is invalid. See the returned message for details.
401Authentication headers are missing or invalid. Make sure you authenticate your request with a valid API key.
403The requested resource is forbidden.
429Too many requests. You hit the rate limit. Use the X-RateLimit headers to confirm when you can retry.
500Internal server error. Retry later, and contact support if the issue persists.
Live API test
GETSame try-it pattern as OpenAPI reference pages — requests use this site's proxy to avoid CORS.
Language
Enter credentials
URL
https://api.altsportsdata.com/api/v1/public/events/eventId/participants
Path Parameters
eventId*path · string
Shell Request
curl -X GET "https://api.altsportsdata.com/api/v1/public/events/eventId/participants" \
-H "X-API-KEY: YOUR_API_KEY" \
-H "Accept: application/json"Response
Click Try it to send a request and see the response here.