Coverage
This endpoint allows you to retrieve the coverages from matches. With this endpoint you can see what data does your match has.
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 per minute.
Use Cases
Get coverages from a specific match_idhttps://football.sportdevs.com/matches-coverage?match_id=eq.{match_id}
Query Parameters
- match_id integer
The id of the match
- has_highlights boolean
If the match has highlights
- has_incidents boolean
If the match has incidents
- has_players_heatmaps boolean
If the match has player heatmaps
- has_players_statistics boolean
If the match has player statistics
- has_statistics boolean
If the match has statistics
- select string
Filtering Columns
- order string
Ordering
- offset string
Default value:
0
Limiting and Pagination
- limit string
Default value:
50
Limiting and Pagination
Header Parameters
- Range string
Limiting and Pagination
- Range-Unit string
Default value:
items
Limiting and Pagination
- Prefer string
Possible values: [
count=none
]Preference
- 200
- 206
OK
- application/json
- Schema
- Example (from schema)
Schema array
- match_id integer
The id of the match
Note: This is a Primary Key.
- has_highlights boolean
If the match has highlights
- has_incidents boolean
If the match has incidents
- has_players_heatmaps boolean
If the match has player heatmaps
- has_players_statistics boolean
If the match has player statistics
- has_statistics boolean
If the match has statistics
[
{
"match_id": 0,
"has_highlights": true,
"has_incidents": true,
"has_players_heatmaps": true,
"has_players_statistics": true,
"has_statistics": true
}
]
Partial Content