Matches Statistics
This endpoint allows you to retrieve the statistics from matches.
Types of the statistics: Strike outs, Batters faced, At bats, Left on base, ERA, Earned runs, Doubles, Base on balls, Assists, Runs, Hits, AVG, Innings pitched, Home runs, Triples, RBI, OPS, SLG, Put outs, OBP, Outs.
Multi-language: This feature allows the user to manually change the language of the API response by adding value to the
lang
attribute. Example:lang=en
.
Pagination: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.
Update Period: The endpoint is updated every minute. Recommended Calls: Limit calls to 1 every minute.
Use Cases
Get statistics from a specific match_idhttps://baseball.sportdevs.com/matches-statistics?match_id=eq.{match_id}
Query Parameters
- match_id integer
Default value:
eq.139
The id of the match
- offset string
Default value:
0
Limiting and Pagination
- limit string
Default value:
50
Limiting and Pagination
- lang string
Default value:
en
Multi-language
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- match_id integer
The id of the match
Note: This is a Foreign Key to
matches-live.id
. - statistics jsonb
The statistics of the match
[
{
"match_id": 139,
"statistics": [
{
"type": "At bats",
"period": "ALL",
"category": "Batting",
"away_team": "37",
"home_team": "32"
},
{
"type": "AVG",
"period": "ALL",
"category": "Batting",
"away_team": ".324",
"home_team": ".188"
},
{
"type": "Base on balls",
"period": "ALL",
"category": "Batting",
"away_team": "4",
"home_team": "3"
},
{
"type": "Doubles",
"period": "ALL",
"category": "Batting",
"away_team": "2",
"home_team": "1"
},
{
"type": "Hits",
"period": "ALL",
"category": "Batting",
"away_team": "12",
"home_team": "6"
},
{
"type": "Home runs",
"period": "ALL",
"category": "Batting",
"away_team": "1",
"home_team": "2"
},
{
"type": "Left on base",
"period": "ALL",
"category": "Batting",
"away_team": "19",
"home_team": "7"
},
{
"type": "OBP",
"period": "ALL",
"category": "Batting",
"away_team": "0.405",
"home_team": "0.257"
},
{
"type": "OPS",
"period": "ALL",
"category": "Batting",
"away_team": "0.864",
"home_team": "0.663"
},
{
"type": "RBI",
"period": "ALL",
"category": "Batting",
"away_team": "7",
"home_team": "5"
},
{
"type": "Runs",
"period": "ALL",
"category": "Batting",
"away_team": "8",
"home_team": "5"
},
{
"type": "SLG",
"period": "ALL",
"category": "Batting",
"away_team": "0.459",
"home_team": "0.406"
},
{
"type": "Strike outs",
"period": "ALL",
"category": "Batting",
"away_team": "5",
"home_team": "5"
},
{
"type": "Triples",
"period": "ALL",
"category": "Batting",
"away_team": "0",
"home_team": "0"
}
]
}
]