Documentation
API ReferencePublic API (Betting & Odds)Events

Get Event

Fetch detailed information about a specific event

Endpoint overview

Fetch detailed information about a specific event

Route

GET/api/v1/public/events/{eventId}

Authentication

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.

eventIdstringrequired

Unique event identifier

Responses

Example Response

{
  "data": {
    "id": "f1-bahrain-gp-2026",
    "name": "Bahrain Grand Prix",
    "sportType": "f1",
    "eventStatus": "UPCOMING",
    "startDate": "2026-03-15T15:00:00Z",
    "venue": {"name": "Bahrain International Circuit", "location": "Sakhir, Bahrain"},
    "participants": 20
  }
}
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

GET

Same 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
Path Parameters
eventId*path · string

Shell Request

curl -X GET "https://api.altsportsdata.com/api/v1/public/events/eventId" \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Accept: application/json"

Response

Click Try it to send a request and see the response here.