Bookmakers
This endpoint allows you to retrieve information about all bookmakers.
With the help of the popularity_order
parameter you can see which bookmaker is more popular and more used.
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 day.
Recommended Calls: Limit calls to 1 per day.
You can retrieve the image of a bookmaker by calling the following URL: https://images.sportdevs.com/{hash_image}.png
Use Cases
Get all bookmakershttps://floorball.sportdevs.com/odds/bookmakers
Get information about a specific bookmaker based on the idhttps://floorball.sportdevs.com/odds/bookmakers?id=eq.{id}
Get the most popular bookmakershttps://floorball.sportdevs.com/odds/bookmakers?order=popularity_order
Query Parameters
- id integer
Default value:
eq.1
The id of the bookmaker. example:
eq.{id}
- name text
Default value:
eq.Stake.com
The name of the bookmaker
- 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
- id integer
The id of the bookmaker. example:
eq.{id}
Note: This is a Primary Key.
- name text
The name of the bookmaker
- popularity_order text
The popularity score of the bookmaker
- hash_image character varying
Possible values:
<= 64 characters
The hash image of the bookmaker
[
{
"id": 1,
"name": "Stake.com",
"popularity_order": "1",
"hash_image": "b7df61bb0380f1918a136da4a70b9d19bc740163bd9dbea2c58de3cc13fc0ff0"
}
]