Version: 2.0.0

Market Categories

REQUIREMENT

You'll need a license key to use OddsJam's API. You can get one by emailing us at [email protected].

API Endpoint#

https://api-external.oddsjam.com/api/v2/market-categories/

Description#

This endpoint returns all the markets that are currently available along with their associated sports and leagues.

Parameters#

key (required)#

Your OddsJam API license key.

id#

The ID of the market you want to receive. (e.g. Moneyline)

label#

The label of the market you want to receive. (e.g. moneyline)

sport#

The sport you want to receive teams for. We support the following:

  • football
  • basketball
  • baseball
  • mma
  • boxing
  • hockey
  • soccer
  • tennis
  • golf
  • motorsports
  • esports
  • wrestling
  • aussie-rules
  • rugby

league#

The league you want to receive odd changes for (e.g. NCAAB)

Example Response#

{
"data": [
{
"id": "moneyline",
"label": "Moneyline",
"sports": [
{
"id": "baseball",
"label": "Baseball"
},
{
"id": "basketball",
"label": "Basketball"
}
],
"leagues": [
{
"id": "mlb",
"label": "MLB",
"sport": "baseball"
},
{
"id": "nba",
"label": "NBA",
"sport": "basketball"
}
]
}
...
]
}