Skip to main content
GET
/
events
Get Events
curl --request GET \
  --url https://api.odds-api.io/v3/events
[
  {
    "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>"
  }
]

Query Parameters

apiKey
string
required

API key for authentication

sport
string
required

Sport slug (e.g. football)

league
string

League slug (e.g. england-premier-league)

status
string

Comma-separated event statuses (e.g. pending,live,settled)

limit
integer

Results per page (max 100)

Response

OK

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