Discover/bet365 API
live

bet365 APIbet365.com.au

Access live and upcoming betting markets with odds from bet365 Australia, plus a full sports category list. 2 endpoints, no auth setup required.

Endpoint health
verified 4d ago
get_sports_list
get_live_games
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the bet365 API?

The bet365 Australia API covers 2 endpoints that return live and upcoming betting market data from bet365.com.au. The get_live_games endpoint delivers an array of market selections — each with odds, handicap values, fixture IDs, and selection names — while get_sports_list returns every sport and navigation category available on the platform, including path data and icon identifiers.

Try it

No input parameters required.

api.parse.bot/scraper/c0fe2c86-eadf-4f33-b1b0-c76efe87f962/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c0fe2c86-eadf-4f33-b1b0-c76efe87f962/get_live_games' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace bet365-com-au-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.bet365_australia_api import Bet365, Market, Sport

client = Bet365()

# List all available sports
for sport in client.sports.list():
    print(sport.sport_name, sport.icon)

# List live betting markets
for market in client.markets.list(limit=20):
    print(market.selection_name, market.odds, market.fixture_id)
All endpoints · 2 totalmissing one? ·

Get all live and upcoming betting markets with odds across all sports from bet365 Australia. Returns selections with their current odds, handicap values, and fixture identifiers. Results represent a point-in-time snapshot of all available markets; the set changes frequently as fixtures start, end, and odds move.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "markets": "array of market selection objects with selection_id, selection_name, odds, handicap, fixture_id",
    "total_markets": "integer - total number of betting market selections returned"
  },
  "sample": {
    "data": {
      "markets": [
        {
          "odds": "2/7",
          "handicap": "",
          "fixture_id": "185941957",
          "selection_id": "118262488",
          "selection_name": "Brazil"
        },
        {
          "odds": "4/5",
          "handicap": "",
          "fixture_id": "192256430",
          "selection_id": "964809461",
          "selection_name": "Netherlands"
        }
      ],
      "total_markets": 2591
    },
    "status": "success"
  }
}

About the bet365 API

What the API Returns

The get_live_games endpoint returns all currently live and upcoming betting markets across every sport on the bet365 Australia homepage. Each item in the markets array includes a selection_id, selection_name, current odds, a handicap value where applicable, and a fixture_id tying the selection to a specific event. The response also includes a total_markets integer giving the count of all selections returned in the payload.

Sports and Navigation Coverage

The get_sports_list endpoint returns every sport and category currently listed on bet365.com.au. Each entry in the sports array carries a sport_name, a path_data value used for navigation, and an icon identifier. A total_sports count is included at the top level. This endpoint is useful for discovering which sports have active markets before querying odds data.

Inputs and Freshness

Neither endpoint accepts query parameters — both return a full snapshot of the current state of the bet365 Australia homepage at the time of the request. Because odds on live markets change frequently, repeated polling is the standard pattern for tracking movement. There is no built-in filtering by sport, event type, or time window within the API itself.

Data Shape Notes

Odds are returned per selection, not per event, so a single fixture will typically produce multiple markets entries — one for each betting option (e.g. home win, draw, away win). The fixture_id field is the consistent join key if you want to group selections belonging to the same event.

Reliability & maintenanceVerified

The bet365 API is a managed, monitored endpoint for bet365.com.au — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bet365.com.au changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official bet365.com.au API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor real-time odds movement across live bet365 Australia markets using repeated calls to get_live_games
  • Build a sport-specific odds dashboard by filtering markets results by sport after cross-referencing get_sports_list output
  • Track handicap values over time for specific fixtures using the fixture_id and handicap fields
  • Aggregate selection counts per sport to identify which categories have the most active in-play markets
  • Alert on odds changes for a watched fixture_id by diffing successive get_live_games responses
  • Enumerate available sports and their path data from get_sports_list to drive navigation in a betting aggregator UI
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does bet365 Australia offer an official developer API?+
bet365 does not publish a public developer API for odds or market data. Affiliate and data partnerships exist for select commercial partners, but there is no self-serve API portal available to general developers.
What does the `get_live_games` endpoint actually return for each selection?+
Each entry in the markets array contains five fields: selection_id (unique identifier for that betting option), selection_name (the label shown to bettors), odds (current decimal or fractional odds as returned), handicap (the line value, present where applicable), and fixture_id (links the selection to its parent event). The total_markets integer at the top level gives the total count of selections in the response.
Can I filter results by a specific sport or event when calling `get_live_games`?+
The endpoint takes no input parameters and returns all live and upcoming markets in a single snapshot. Filtering by sport, competition, or event must be done client-side using the selection_name or fixture_id fields. You can cross-reference sport categories returned by get_sports_list to build a mapping. If you need server-side filtering, you can fork the API on Parse and revise it to add a sport or fixture filter parameter.
Does the API cover historical odds or settled markets?+
Not currently. Both endpoints reflect the live state of the bet365 Australia homepage — active and upcoming markets only. Historical odds, settled results, and past fixture data are not included. You can fork the API on Parse and revise it to add an endpoint targeting historical or results data if that surface becomes accessible.
How fresh is the odds data, and does the API support streaming updates?+
Each call to get_live_games returns a point-in-time snapshot. Odds on live markets can shift within seconds, so the data reflects what was available at the moment of the request. The API does not support push or streaming updates; continuous polling is required to track changes over time.
Page content last updated . Spec covers 2 endpoints from bet365.com.au.
Related APIs in SportsSee all →
bet365.bet.br API
Access live betting odds, featured sports events, and real-time scores directly from bet365 Brazil's platform across multiple sports including Formula 1 and in-play markets. Get current match results, browse available betting categories, and view homepage promotions all through structured data endpoints.
oh.bet365.com API
Retrieve current betting odds from Bet365 for major sports leagues, including spread, moneyline, and over/under totals. Compare betting lines across sports such as NBA, MLB, NHL, soccer, and tennis.
unibet.com API
Access live betting odds, browse sports categories and upcoming matches, and search for specific events across multiple leagues in real-time. Get detailed event information including current odds for thousands of sports matchups to inform your betting decisions.
superbet.ro API
Access sports betting data from Superbet.ro, including the full sports and competition hierarchy, pre-match and live event listings, detailed odds, boosted prices, popular accumulator suggestions, and Bet Builder markets.
oddsportal.com API
Track sports betting odds, matches, and results across multiple sports and leagues in real-time, while viewing team standings and match details to stay informed on upcoming games. Access comprehensive betting data and historical results from OddsPortal to compare odds and analyze sports outcomes.
sportybet.com API
Get real-time betting odds and live scores for football, basketball, and other sports from SportyBet. Browse upcoming events with full market odds, monitor live matches as they happen, and view sport listings with event counts across multiple markets.
22bet.co.ke API
Access live and pre-match sports betting data from 22Bet Kenya, including match details, odds, and league information across multiple sports. Monitor real-time football matches and discover available betting opportunities through comprehensive sitemap navigation.
betfred.com API
Access real-time casino games, trending favorites, and upcoming sports matches from Betfred all in one place. Browse comprehensive sports configurations and discover which games are currently popular.