Odd Even
This endpoint allows you to retrieve the odds from odd even market.
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: Live and today's matches are updated every minute, while other matches are updated every hour.
Recommended Calls: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.
Use Cases
Get the odds from a specific match_idhttps://hockey.sportdevs.com/odds/odd-even?match_id=eq.{match_id}
Get the live odds from a specific match_idhttps://hockey.sportdevs.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.true
Get the pre-match odds from a specific match_idhttps://hockey.sportdevs.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.false
Query Parameters
- match_id integer
Default value:
eq.17829
The id of the match. example:
eq.{match_id}
- is_live boolean
Default value:
eq.false
If the match is live. example:
eq.{is_live}
- 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}
- is_live boolean
If the match is live. example:
eq.{is_live}
- periods json
Periods
[
{
"match_id": 17829,
"is_live": false,
"periods": [
{
"period_type": "1st Period",
"odds": [
{
"id": 9989,
"bookmaker_id": 1,
"bookmaker_name": "Stake.com",
"bookmaker_order": 1,
"bookmaker_hash_image": "b7df61bb0380f1918a136da4a70b9d19bc740163bd9dbea2c58de3cc13fc0ff0",
"odd": 2,
"odd_movement": -1,
"even": 1.78,
"even_movement": -1,
"payout": 94.18
}
]
},
{
"period_type": "Full Time",
"odds": [
{
"id": 9983,
"bookmaker_id": 9,
"bookmaker_name": "Marathonbet",
"bookmaker_order": 12,
"bookmaker_hash_image": "5cdb85f84c139920abb014112cee3c97015e5614504e64c0fd2dfb14be5cbb4f",
"odd": 1.96,
"odd_movement": -1,
"even": 1.77,
"even_movement": 1,
"payout": 93.01
},
{
"id": 9985,
"bookmaker_id": 16,
"bookmaker_name": "Suprabets",
"bookmaker_order": 37,
"bookmaker_hash_image": "d8b7921fba1dff4810e4dc48d1874db64104e60f84724b2a01f96d0c5b0f27cb",
"odd": 1.94,
"odd_movement": -1,
"even": 1.76,
"even_movement": 1,
"payout": 92.28
},
{
"id": 9986,
"bookmaker_id": 19,
"bookmaker_name": "Parimatch",
"bookmaker_order": 47,
"bookmaker_hash_image": "15b0535b97f30ff58c1b7db577b04bdaf15a124205ecf72a3e036fa59ae6733c",
"odd": 2.02,
"odd_movement": 1,
"even": 1.74,
"even_movement": -1,
"payout": 93.48
},
{
"id": 9987,
"bookmaker_id": 47,
"bookmaker_name": "SBOBET",
"bookmaker_order": 198,
"bookmaker_hash_image": "fd9f3d06711db75a43efc64268f456448f90a5d145cd65110cc4c0ae3b11df48",
"odd": 1.96,
"odd_movement": -1,
"even": 1.77,
"even_movement": -1,
"payout": 93.01
},
{
"id": 9988,
"bookmaker_id": 49,
"bookmaker_name": "STS",
"bookmaker_order": 203,
"bookmaker_hash_image": "c37134ecbb80a2fdd7ee6be4d113bb8a1c53cb462b60e864ae8ee2cfabea1088",
"odd": 1.94,
"odd_movement": -1,
"even": 1.76,
"even_movement": 1,
"payout": 92.28
},
{
"id": 9984,
"bookmaker_id": 74,
"bookmaker_name": "Vbet Sport",
"bookmaker_order": 25,
"bookmaker_hash_image": "170428aa6e0eec2fda96c3880f1171775deed351466c0bb3b25699cebaa0eae6",
"odd": 1.94,
"odd_movement": -1,
"even": 1.76,
"even_movement": -1,
"payout": 92.28
}
]
}
]
}
]