Coverage
This endpoint allows you to retrieve information about all matches coverages.
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 all coverageshttps://esports.sportdevs.com/odds/coverage
Get odds coverages from a specific match_idhttps://esports.sportdevs.com/odds/coverage?match_id=eq.{match_id}
Query Parameters
- match_id integer
Default value:
eq.3199
The id of the match. example:
eq.{match_id}
- 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. example:
eq.{match_id}
- match_winner boolean
Coverage of match_winner
- over_under boolean
Coverage of over_under
- match_handicap boolean
Coverage of match_handicap
- correct_score boolean
Coverage of correct_score
- odd_even boolean
Coverage of odd_even
- home_draw_away boolean
Coverage of home_draw_away
[
{
"match_id": 3199,
"match_winner": true,
"over_under": true,
"match_handicap": true,
"correct_score": false,
"odd_even": false,
"home_draw_away": false
}
]