Coverage Live
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 live coverageshttps://american-football.sportdevs.com/odds/coverage-live
Get live odds coverage a specific match_idhttps://american-football.sportdevs.com/odds/coverage-live?match_id=eq.{match_id}
Query Parameters
- match_id integer
Default value:
eq.991
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}
- moneyline boolean
Coverage of moneyline
- totals boolean
Coverage of totals
- spread boolean
Coverage of spread
- draw_no_bet boolean
Coverage of draw_no_bet
- half_time_full_time boolean
Coverage of half_time_full_time
- odd_even boolean
Coverage of odd_even
- full_time_results boolean
Coverage of full_time_results
- tied_at_end_of_regulation boolean
Coverage of tied_at_end_of_regulation
[
{
"match_id": 991,
"moneyline": false,
"totals": false,
"spread": false,
"draw_no_bet": false,
"half_time_full_time": false,
"odd_even": false,
"full_time_results": false,
"tied_at_end_of_regulation": false
}
]