Docs

Odds API documentation and live reference.

Start with the overview, pick up the core endpoints, then move into the live OpenAPI reference.

Overview

Get started in 3 steps.

Step 1

Choose a plan and get access

Start with the public docs or move straight into a paid AUD plan through Stripe Checkout.

Step 2

Fetch sports and event data

List sports, pull odds, and request snapshots using a simple API key flow and predictable endpoints.

Step 3

Ship it in your product

Use the same feed in dashboards, comparison tools, models, alerts, and bookmaker-facing workflows.

Host

Base URLs

  • https://wagerwise-odds.com
  • https://wagerwise-odds.com/v1/reference
  • https://wagerwise-odds.com/v1/openapi.json
Endpoints

Start with the endpoints most buyers look for.

/v1/sports

List sports

Get active sports and keys before making odds or event requests.

/v1/events

Get events and odds

Pull upcoming events with bookmaker markets for your chosen sport and filters.

/v1/historical

Historical snapshots

Access older odds snapshots on paid plans when you need backtests or archive workflows.

quickstart.py
import requests

BASE_URL = "https://wagerwise-odds.com"
API_KEY = "YOUR_API_KEY"

response = requests.get(
    f"{BASE_URL}/v1/events",
    headers={"X-API-Key": API_KEY},
    params={"sport": "basketball_nba", "market": "h2h"},
    timeout=15,
)
response.raise_for_status()
print(response.json())
Embedded OpenAPI

Live reference

Rendered with Redoc against the current WagerWise odds spec.