Skip to main content
GET
/
events
/
{id}
Get Event by ID
curl --request GET \
  --url https://api.odds-api.io/v3/events/{id}
{
  "away": "<string>",
  "date": "<string>",
  "home": "<string>",
  "id": 123,
  "league": {
    "name": "<string>",
    "slug": "<string>"
  },
  "scores": {
    "away": 123,
    "home": 123
  },
  "sport": {
    "name": "<string>",
    "slug": "<string>"
  },
  "status": "<string>"
}

Path Parameters

id
integer
required

Event ID

Query Parameters

apiKey
string
required

API key for authentication

Response

OK

away
string
date
string
home
string
id
integer
league
object
scores
object
sport
object
status
string
I