NRL odds data for apps, dashboards and alerts
Intro: NRL products often need head-to-head, line and totals data from multiple Australian bookmakers.
What data you need: teams, start times, markets, selections, prices, bookmaker IDs and update timestamps.
How the API works: request NRL odds with an API key, receive JSON and render comparison tables or feed model logic.
Code concept: group events by match, calculate best price per side and trigger alerts when a target price appears.
AU bookmaker coverage note: NRL is a local high-volume market, so bookmaker depth and State of Origin/finals context matter.
Responsible gambling note: display odds as information and include 18+ and help messaging.
- NRL H2H
- Line markets
- Totals
- Best-price alerts
- Free API key
Example API calls
# Racing — its own endpoint family, NOT a sport_key
curl "https://api.puntersedge.online/v1/racing/next-to-go?categories=horse&num_races=5" \
-H "X-API-Key: YOUR_API_KEY"
# Sports — best price per outcome across the books quoting it
curl "https://api.puntersedge.online/v1/best-odds/nrl" \
-H "X-API-Key: YOUR_API_KEY"
curl "https://api.puntersedge.online/v1/racing/next-to-go?num_races=5" \
-H "X-API-Key: YOUR_API_KEY"