Choose a plan and get access
Start with the public docs or move straight into a paid AUD plan through Stripe Checkout.
Start with the overview, pick up the core endpoints, then move into the live OpenAPI reference.
Start with the public docs or move straight into a paid AUD plan through Stripe Checkout.
List sports, pull odds, and request snapshots using a simple API key flow and predictable endpoints.
Use the same feed in dashboards, comparison tools, models, alerts, and bookmaker-facing workflows.
https://wagerwise-odds.comhttps://wagerwise-odds.com/v1/referencehttps://wagerwise-odds.com/v1/openapi.json/v1/sports
Get active sports and keys before making odds or event requests.
/v1/events
Pull upcoming events with bookmaker markets for your chosen sport and filters.
/v1/historical
Access older odds snapshots on paid plans when you need backtests or archive workflows.
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())
Rendered with Redoc against the current WagerWise odds spec.