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://hockey.sportdevs.com/odds/coverage
Get odds coverages from a specific match_idhttps://hockey.sportdevs.com/odds/coverage?match_id=eq.{match_id}
Query Parameters
- match_id integer
Default value:
eq.17829
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}
- three_way_moneyline boolean
Coverage of three_way_moneyline
- total_goals boolean
Coverage of total_goals
- goals_handicap boolean
Coverage of goals_handicap
- both_teams_to_score boolean
Coverage of both_teams_to_score
- double_chance boolean
Coverage of double_chance
- moneyline boolean
Coverage of moneyline
- draw_no_bet boolean
Coverage of draw_no_bet
- correct_score boolean
Coverage of correct_score
- european_handicap boolean
Coverage of european_handicap
- odd_even boolean
Coverage of odd_even
- first_team_to_score boolean
Coverage of first_team_to_score
- tied_at_end_of_regulation boolean
Coverage of tied_at_end_of_regulation
[
{
"match_id": 17829,
"three_way_moneyline": true,
"total_goals": true,
"goals_handicap": true,
"both_teams_to_score": true,
"double_chance": true,
"moneyline": true,
"draw_no_bet": true,
"correct_score": true,
"european_handicap": true,
"odd_even": true,
"first_team_to_score": false,
"tied_at_end_of_regulation": false
}
]