OpenOddsAPI API Get started

Endpoints

Get Event

GET/v1/sports/{sport_key}/events/{event_id}API key

Returns a single event by ID. Unknown or removed events return 404 event_not_found.

Path parameters

NameTypeRequiredDescription
sport_keystringrequiredSport key, e.g. golf.
event_idstringrequiredEvent ID, e.g. evt_gol_fedexstjude_2026.

Request

cURL
curl https://api.openoddsapi.com/v1/sports/golf/events/evt_gol_fedexstjude_2026 \
  -H "X-API-Key: sk_test_your_key_here"
200 OK — event object
JSON
{
  "id": "evt_gol_fedexstjude_2026",
  "sport_key": "golf",
  "title": "FedEx St. Jude Championship",
  "competition": "PGA Tour - FedEx Cup Playoffs",
  "commence_time": "2026-08-13T12:30:00Z",
  "home_team": null,
  "away_team": null,
  "status": "scheduled",
  "markets": ["outright", "top5", "top10", "top20", "three_ball", "matchup", "round_leader"]
}

For golf, commence_time is the first-round tee time and title names the tournament. For head-to-head sports, title is omitted and both teams are populated.

OpenOddsAPI API — Documentation v1Examples use illustrative data