NAV
shell javascript python

BUNDESLIGA API

Welcome to the BALLDONTLIE BUNDESLIGA API. This API contains data from 2010-current. An API key is required. You can obtain an API key by creating a free account on our website. Read the authentication section to learn how to use the API key.

Take a look at our other APIs.

Join us on discord.

AI-Powered Integration

Using the OpenAPI Specification with AI

Our complete OpenAPI specification allows AI assistants to automatically understand and interact with our API. Simply share the spec URL with your AI assistant and describe what you want to build—the AI will handle the technical implementation.

Getting Started with AI:

  1. Copy this URL: https://www.balldontlie.io/openapi.yml
  2. Share it with your preferred AI assistant (ChatGPT, Claude, Gemini, etc.)
  3. Tell the AI what you want to build (e.g., "Create a dashboard showing this week's Bundesliga matches")
  4. The AI will read the OpenAPI spec and write the code for you

Example prompts to try:

This makes it incredibly easy for non-technical users, analysts, and researchers to leverage our sports data without needing to learn programming from scratch.

Account Tiers

There are three different account tiers which provide you access to different types of data. Visit our website to create an account for free.

Paid tiers do not apply across sports. The tier you purchase for Bundesliga will not automatically be applied to other sports. You can purchase the ALL-ACCESS ($159.99/mo) tier to get access to every endpoint for every sport.

Read the table below to see the breakdown.

Endpoint Free ALL-STAR GOAT
Teams Yes Yes Yes
Rosters Yes Yes Yes
Players Yes Yes Yes
Standings Yes Yes Yes
Matches No Yes Yes
Match Events No Yes Yes
Match Lineups No Yes Yes
Player Match Stats No No Yes
Team Match Stats No No Yes
Betting Odds No No Yes
Player Props No No Yes

The feature breakdown per tier is shown in the table below.

Tier Requests / Min $USD / mo.
GOAT 600 39.99
ALL-STAR 60 9.99
Free 5 0

Authentication

To authorize, use this code:

curl "api_endpoint_here" -H "Authorization: YOUR_API_KEY"
const response = await fetch("api_endpoint_here", {
  headers: {
    "Authorization": "YOUR_API_KEY"
  }
});
const data = await response.json();
import requests

response = requests.get(
    "api_endpoint_here",
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

Make sure to replace YOUR_API_KEY with your API key.

BALLDONTLIE uses API keys to allow access to the API. You can obtain an API key by creating a free account at our website

We expect the API key to be included in all API requests to the server in a header that looks like the following:

Authorization: YOUR_API_KEY

Pagination

This API uses cursor based pagination rather than limit/offset. Endpoints that support pagination will send back responses with a meta key that looks like what is displayed on the right.

{
  "meta": {
    "next_cursor": 90,
    "per_page": 25
  }
}

You can use per_page to specify the maximum number of results. It defaults to 25 and doesn't allow values larger than 100.

You can use next_cursor to get the next page of results. Specify it in the request parameters like this: ?cursor=NEXT_CURSOR.

Errors

The API uses the following error codes:

Error Code Meaning
401 Unauthorized - You either need an API key or your account tier does not have access to the endpoint.
400 Bad Request -- The request is invalid. The request parameters are probably incorrect.
404 Not Found -- The specified resource could not be found.
406 Not Acceptable -- You requested a format that isn't json.
429 Too Many Requests -- You're rate limited.
500 Internal Server Error -- We had a problem with our server. Try again later.
503 Service Unavailable -- We're temporarily offline for maintenance. Please try again later.

Teams

Get All Teams

curl "https://api.balldontlie.io/bundesliga/v1/teams" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/teams",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/teams",
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 24,
      "name": "Bayern Munich",
      "short_name": "Bayern",
      "abbreviation": "MUN",
      "location": "Bayern Munich"
    },
    {
      "id": 25,
      "name": "Borussia Dortmund",
      "short_name": "Dortmund",
      "abbreviation": "DOR",
      "location": "Borussia Dortmund"
    },
    {
      "id": 23,
      "name": "Bayer Leverkusen",
      "short_name": "Leverkusen",
      "abbreviation": "B04",
      "location": "Bayer Leverkusen"
    },
    ...
  ]
}

This endpoint retrieves all teams.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/teams

Rosters

Get Team Roster

curl "https://api.balldontlie.io/bundesliga/v1/rosters?team_id=24" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/rosters?team_id=24",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/rosters",
    params={"team_id": 24},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "team_id": 24,
      "player": {
        "id": 740,
        "first_name": "Alphonso",
        "last_name": "Davies",
        "display_name": "Alphonso Davies",
        "short_name": "A Davies",
        "date_of_birth": "2000-11-02",
        "age": 25,
        "height": "6' 0\"",
        "weight": "163 lbs",
        "citizenship": "Canada"
      },
      "season": 2025,
      "jersey_number": "19",
      "position": "Defender",
      "position_abbreviation": "D",
      "is_active": true
    },
    {
      "team_id": 24,
      "player": {
        "id": 733,
        "first_name": "Harry",
        "last_name": "Kane",
        "display_name": "Harry Kane",
        "short_name": "H Kane",
        "date_of_birth": "1993-07-28",
        "age": 32,
        "height": "6' 2\"",
        "weight": "190 lbs",
        "citizenship": "England"
      },
      "season": 2025,
      "jersey_number": "9",
      "position": "Forward",
      "position_abbreviation": "F",
      "is_active": true
    },
    ...
  ]
}

This endpoint retrieves the roster for a specific team.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/rosters

Query Parameters

Parameter Required Description
team_id true Filter roster by team ID
cursor false The cursor for pagination
per_page false Number of results per page (max 100)

Players

Get All Players

curl "https://api.balldontlie.io/bundesliga/v1/players?per_page=5" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/players?per_page=5",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/players",
    params={"per_page": 5},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 214,
      "first_name": "Aaron",
      "last_name": "Anselmino",
      "display_name": "Aaron Anselmino",
      "short_name": "A Anselmino",
      "date_of_birth": "2005-04-29",
      "age": 20,
      "height": "6' 1\"",
      "weight": "183 lbs",
      "citizenship": "Argentina",
      "team_ids": [25]
    },
    {
      "id": 48255,
      "first_name": "Aaron",
      "last_name": "Herzog",
      "display_name": "Aaron Herzog",
      "short_name": "A Herzog",
      "date_of_birth": "1998-01-30",
      "age": 27,
      "height": "5' 11\"",
      "weight": "170 lbs",
      "citizenship": "Germany",
      "team_ids": [26]
    },
    ...
  ],
  "meta": {
    "next_cursor": 16614,
    "per_page": 5
  }
}

This endpoint retrieves all players.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/players

Query Parameters

Parameter Required Description
cursor false The cursor for pagination
per_page false Number of results per page (max 100)
team_ids false Filter by team IDs
player_ids false Filter by player IDs
search false Search by player name
first_name false Filter by player's first name
last_name false Filter by player's last name

Standings

Get Standings

curl "https://api.balldontlie.io/bundesliga/v1/standings" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/standings",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/standings",
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "team": {
        "id": 24,
        "name": "Bayern Munich",
        "short_name": "Bayern",
        "abbreviation": "MUN",
        "location": "Bayern Munich"
      },
      "season": 2025,
      "rank": 1,
      "rank_change": 0,
      "group_name": "2025-26 German Bundesliga",
      "note": "Champions League",
      "games_played": 15,
      "wins": 13,
      "losses": 0,
      "draws": 2,
      "points": 41,
      "goals_for": 55,
      "goals_against": 11,
      "goal_differential": 44,
      "points_per_game": null
    },
    {
      "team": {
        "id": 25,
        "name": "Borussia Dortmund",
        "short_name": "Dortmund",
        "abbreviation": "DOR",
        "location": "Borussia Dortmund"
      },
      "season": 2025,
      "rank": 2,
      "rank_change": 0,
      "group_name": "2025-26 German Bundesliga",
      "note": "Champions League",
      "games_played": 15,
      "wins": 9,
      "losses": 1,
      "draws": 5,
      "points": 32,
      "goals_for": 26,
      "goals_against": 12,
      "goal_differential": 14,
      "points_per_game": null
    },
    {
      "team": {
        "id": 23,
        "name": "Bayer Leverkusen",
        "short_name": "Leverkusen",
        "abbreviation": "B04",
        "location": "Bayer Leverkusen"
      },
      "season": 2025,
      "rank": 3,
      "rank_change": 0,
      "group_name": "2025-26 German Bundesliga",
      "note": "Champions League",
      "games_played": 15,
      "wins": 9,
      "losses": 4,
      "draws": 2,
      "points": 29,
      "goals_for": 33,
      "goals_against": 20,
      "goal_differential": 13,
      "points_per_game": null
    },
    ...
  ]
}

This endpoint retrieves team standings.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/standings

Query Parameters

Parameter Required Description
season false Returns team standings for this season

Matches

Get All Matches

curl "https://api.balldontlie.io/bundesliga/v1/matches?per_page=5" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/matches?per_page=5",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/matches",
    params={"per_page": 5},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 2071,
      "season": 2025,
      "home_team_id": 21,
      "away_team_id": 24,
      "date": "2024-12-14T14:30:00.000Z",
      "name": "Bayern Munich at 1. FC Heidenheim 1846",
      "short_name": "MUN @ HDH",
      "status": "STATUS_FULL_TIME",
      "status_detail": "FT",
      "home_score": 0,
      "away_score": 4,
      "venue_name": "Voith-Arena",
      "venue_city": "Heidenheim",
      "attendance": 15000
    },
    {
      "id": 2068,
      "season": 2025,
      "home_team_id": 26,
      "away_team_id": 25,
      "date": "2024-12-14T17:30:00.000Z",
      "name": "Borussia Dortmund at Borussia Monchengladbach",
      "short_name": "DOR @ BMG",
      "status": "STATUS_FULL_TIME",
      "status_detail": "FT",
      "home_score": 2,
      "away_score": 0,
      "venue_name": "BORUSSIA-PARK",
      "venue_city": "Monchengladbach",
      "attendance": 54000
    },
    ...
  ],
  "meta": {
    "next_cursor": 2068,
    "per_page": 5
  }
}

This endpoint retrieves all matches.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/matches

Query Parameters

Parameter Required Description
cursor false The cursor for pagination
per_page false Number of results per page (max 100)
seasons false Filter matches by seasons
team_ids false Filter matches by team IDs
dates false Filter matches by specific dates

Match Events

Get Match Events

curl "https://api.balldontlie.io/bundesliga/v1/match_events?match_ids[]=2071" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/match_events?match_ids[]=2071",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/match_events",
    params={"match_ids[]": 2071},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 150547,
      "match_id": 2071,
      "team_id": 24,
      "event_type": "goal",
      "event_time": 15,
      "period": 1,
      "player": {
        "id": 757,
        "first_name": "Josip",
        "last_name": "Stanisic",
        "display_name": "Josip Stanisic",
        "short_name": "J Stanisic",
        "date_of_birth": "2000-04-02",
        "age": 25,
        "height": "6' 1\"",
        "weight": "170 lbs",
        "citizenship": "Croatia"
      },
      "secondary_player": null,
      "goal_type": "header",
      "is_own_goal": false
    },
    {
      "id": 150548,
      "match_id": 2071,
      "team_id": 24,
      "event_type": "goal",
      "event_time": 32,
      "period": 1,
      "player": {
        "id": 738,
        "first_name": "Michael",
        "last_name": "Olise",
        "display_name": "Michael Olise",
        "short_name": "M Olise",
        "date_of_birth": "2001-12-12",
        "age": 24,
        "height": "6' 0\"",
        "weight": "168 lbs",
        "citizenship": "France"
      },
      "secondary_player": null,
      "goal_type": "regular",
      "is_own_goal": false
    },
    ...
  ]
}

This endpoint retrieves events (goals, cards, substitutions) for specific matches.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/match_events

Query Parameters

Parameter Required Description
match_ids true Filter events by match IDs (array)
cursor false The cursor for pagination
per_page false Number of results per page (max 100)

Match Lineups

Get Match Lineups

curl "https://api.balldontlie.io/bundesliga/v1/match_lineups?match_ids[]=2071" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/match_lineups?match_ids[]=2071",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/match_lineups",
    params={"match_ids[]": 2071},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "match_id": 2071,
      "team_id": 24,
      "player": {
        "id": 733,
        "first_name": "Harry",
        "last_name": "Kane",
        "display_name": "Harry Kane",
        "short_name": "H Kane",
        "date_of_birth": "1993-07-28",
        "age": 32,
        "height": "6' 2\"",
        "weight": "190 lbs",
        "citizenship": "England"
      },
      "is_starter": true,
      "position": "Forward",
      "position_abbreviation": "F",
      "formation_position": "9",
      "jersey_number": null
    },
    {
      "match_id": 2071,
      "team_id": 24,
      "player": {
        "id": 738,
        "first_name": "Michael",
        "last_name": "Olise",
        "display_name": "Michael Olise",
        "short_name": "M Olise",
        "date_of_birth": "2001-12-12",
        "age": 24,
        "height": "6' 0\"",
        "weight": "168 lbs",
        "citizenship": "France"
      },
      "is_starter": true,
      "position": "Attacking Midfielder Right",
      "position_abbreviation": "AM-R",
      "formation_position": "7",
      "jersey_number": null
    },
    ...
  ]
}

This endpoint retrieves lineup information for specific matches.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/match_lineups

Query Parameters

Parameter Required Description
match_ids true Filter lineups by match IDs (array)
cursor false The cursor for pagination
per_page false Number of results per page (max 100)

Player Match Stats

Get Player Match Stats

curl "https://api.balldontlie.io/bundesliga/v1/player_match_stats?match_ids[]=2071" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/player_match_stats?match_ids[]=2071",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/player_match_stats",
    params={"match_ids[]": 2071},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "match_id": 2071,
      "player_id": 733,
      "team_id": 24,
      "appearances": 1,
      "goals": 1,
      "assists": 0,
      "shots_total": 5,
      "shots_on_target": 4,
      "fouls_committed": null,
      "fouls_suffered": 1,
      "offsides": null,
      "saves": null,
      "yellow_cards": 0,
      "red_cards": 0,
      "own_goals": 0
    },
    {
      "match_id": 2071,
      "player_id": 743,
      "team_id": 24,
      "appearances": 1,
      "goals": 0,
      "assists": 0,
      "shots_total": 4,
      "shots_on_target": 1,
      "fouls_committed": null,
      "fouls_suffered": null,
      "offsides": null,
      "saves": null,
      "yellow_cards": 0,
      "red_cards": 0,
      "own_goals": 0
    },
    ...
  ],
  "meta": {
    "per_page": 25
  }
}

This endpoint retrieves player statistics for specific matches.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/player_match_stats

Query Parameters

Parameter Required Description
match_ids true Filter stats by match IDs (array)
cursor false The cursor for pagination
per_page false Number of results per page (max 100)

Team Match Stats

Get Team Match Stats

curl "https://api.balldontlie.io/bundesliga/v1/team_match_stats?match_ids[]=2071" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/team_match_stats?match_ids[]=2071",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/team_match_stats",
    params={"match_ids[]": 2071},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "match_id": 2071,
      "team_id": 21,
      "possession_pct": 26.1,
      "shots": 7,
      "shots_on_target": 1,
      "fouls": 8,
      "yellow_cards": 0,
      "red_cards": 0,
      "corners": null,
      "passes": 268,
      "pass_accuracy_pct": null
    },
    {
      "match_id": 2071,
      "team_id": 24,
      "possession_pct": 73.9,
      "shots": 23,
      "shots_on_target": 11,
      "fouls": 6,
      "yellow_cards": 0,
      "red_cards": 0,
      "corners": null,
      "passes": 778,
      "pass_accuracy_pct": null
    }
  ],
  "meta": {
    "per_page": 25
  }
}

This endpoint retrieves team statistics for specific matches.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/team_match_stats

Query Parameters

Parameter Required Description
match_ids true Filter stats by match IDs (array)
cursor false The cursor for pagination
per_page false Number of results per page (max 100)

Betting Odds

Get Betting Odds

curl "https://api.balldontlie.io/bundesliga/v1/odds?per_page=5" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/odds?per_page=5",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/odds",
    params={"per_page": 5},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 40972366,
      "match_id": 2077,
      "vendor": "draftkings",
      "moneyline_home_odds": -125,
      "moneyline_away_odds": 275,
      "moneyline_draw_odds": 245,
      "updated_at": "2025-12-23T16:30:24.752Z"
    },
    {
      "id": 40972369,
      "match_id": 2080,
      "vendor": "draftkings",
      "moneyline_home_odds": 120,
      "moneyline_away_odds": 210,
      "moneyline_draw_odds": 210,
      "updated_at": "2025-12-23T16:30:24.752Z"
    },
    {
      "id": 40972362,
      "match_id": 2081,
      "vendor": "draftkings",
      "moneyline_home_odds": -135,
      "moneyline_away_odds": 275,
      "moneyline_draw_odds": 270,
      "updated_at": "2025-12-23T16:30:24.752Z"
    },
    ...
  ],
  "meta": {
    "next_cursor": 40972363,
    "per_page": 5
  }
}

This endpoint retrieves betting odds for Bundesliga matches. Odds include moneyline odds for home, away, and draw outcomes.

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/odds

Query Parameters

Parameter Required Description
cursor false The cursor for pagination
per_page false Number of results per page (max 100)
match_ids false Filter by match IDs (array)

Player Props

The Player Props API provides real-time player prop betting odds for Bundesliga matches. Player props allow betting on individual player performances such as goals, assists, shots on target, saves, and more.

Market Types

The API supports two market types:

Get Player Props

curl "https://api.balldontlie.io/bundesliga/v1/odds/player_props?match_id=2077" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/bundesliga/v1/odds/player_props?match_id=2077",
  {
    headers: { "Authorization": "YOUR_API_KEY" }
  }
);
const data = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/bundesliga/v1/odds/player_props",
    params={"match_id": 2077},
    headers={"Authorization": "YOUR_API_KEY"}
)
data = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 399789241,
      "match_id": 2077,
      "player_id": 733,
      "vendor": "caesars",
      "prop_type": "anytime_goal",
      "line_value": "1",
      "market": {
        "type": "milestone",
        "odds": 120
      },
      "updated_at": "2025-12-23T17:01:50.442Z"
    },
    {
      "id": 399789242,
      "match_id": 2077,
      "player_id": 738,
      "vendor": "caesars",
      "prop_type": "anytime_goal",
      "line_value": "1",
      "market": {
        "type": "milestone",
        "odds": 200
      },
      "updated_at": "2025-12-23T17:01:50.442Z"
    },
    ...
  ],
  "meta": {
    "per_page": 25
  }
}

This endpoint retrieves player prop betting odds for a specific Bundesliga match.

Available Vendors:

HTTP Request

GET https://api.balldontlie.io/bundesliga/v1/odds/player_props

Query Parameters

Parameter Required Description
match_id true The match ID to retrieve player props for
player_id false Filter props for a specific player
prop_type false Filter by prop type. See supported prop types below.
vendors false Filter by specific sportsbook vendors. This should be an array: ?vendors[]=draftkings&vendors[]=fanduel

Supported Prop Types

The following prop_type values are supported:

Prop Type Description
anytime_goal Score a goal anytime in match
assists Total assists
first_goal Score the first goal of match
first_half_goal Score a goal in the first half
goals_assists Combined goals and assists
header_goal Score a goal with a header
last_goal Score the last goal of match
outside_box_goal Score from outside the box
saves Total saves (goalkeepers)
second_half_goal Score a goal in the second half
shots Total shots
shots_on_target Total shots on target
tackles Total tackles

Note: The actual prop types available may vary by match and sportsbook vendor.