NextWager Documentation

These docs are for version 4, the latest version of the API. If you require documentation for V3 please contact us and we will help you.

Overview

Get started with NextWager.IO API in 3 steps

Step 1

Get an API key via email

See plans

Step 2

Get a list of in-season sports

Details

GET /v4/sports?apiKey=YOUR_API_KEY
{
  "key": "americanfootball_nfl",
  "group": "American Football",
  "title": "NFL",
  "description": "US Football",
  "active": true,
  "has_outrights": false
}

Step 3

Use the sport key from step 2 to get a list of upcoming events and odds from different bookmakers.

Use the oddsFormat parameter to show odds in either decimal or American format.

Details

GET /v4/sports/americanfootball_nfl/odds?regions=us&oddsFormat=american&apiKey=YOUR_API_KEY
{
  "id": "bda33adca828c09dc3cac3a856aef176",
  "sport_key": "americanfootball_nfl",
  "commence_time": "2021-09-10T00:20:00Z",
  "home_team": "Tampa Bay Buccaneers",
  "away_team": "Dallas Cowboys",
  "bookmakers": [
    {
      "key": "fanduel",
      "title": "FanDuel",
      "last_update": "2021-06-10T10:46:09Z",
      "markets": [
        {
          "key": "h2h",
          "outcomes": [
            {
              "name": "Dallas Cowboys",
              "price": 240
            },
            {
              "name": "Tampa Bay Buccaneers",
              "price": -303
            }
          ]
        }
      ]
    }
  ]
}