GET
/
v1
/
{league}
/
props
/
markets
List prop markets for a league
curl --request GET \
  --url http://localhost:8082/v1/{league}/props/markets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "code": "points",
      "display_name": "Points",
      "stat_type": "ou_decimal"
    },
    {
      "code": "rebounds",
      "display_name": "Rebounds",
      "stat_type": "ou_decimal"
    }
  ]
}

Authorizations

Authorization
string
header
default:tok_public_demo
required

Send a workspace API token in the Authorization: Bearer <token> header.

Path Parameters

league
string
required

League identifier from the /v1/leagues catalog (e.g. mlb, nba, epl). Unknown values return 404 unsupported_league.

Response

Prop markets supported for the league's sport.