Step 1
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, then move into the embedded OpenAPI reference from the current WagerWise API.
Step 1
Start with the public docs or move straight into a paid AUD plan through Stripe Checkout.
Step 2
List sports, pull odds, and request snapshots using a simple API key flow and predictable endpoints.
Step 3
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.jsonThese are the main surfaces before the full reference.
/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.