The Odds API provides live odds for loads of sports from bookmakers around the world, in an easy to use JSON format.
Before getting started, be sure to get a free API key from https://the-odds-api.com
For more info on the API, see the docs
node sample-v4.js YOUR_API_KEY
This will print:
- A list of in-season sports
- Events and odds for the next 8 upcoming games (across all sports)
- Requests used & remaining for your api key
To change the sport, region and market, see the parameters specified at the beginning sample-v4.js
Make sure the axios library is installed npm install axios
Build the image
docker build -t theoddsapi/sample:latest .
Run the node script in the container
docker run -t -i --rm -v "$(pwd)":/usr/src/app/ theoddsapi/sample:latest node sample-v4.js YOUR_API_KEY
These samples will work for older API versions by running the relevant sample-{version}.py
file.