Discover/BetExplorer API
live

BetExplorer APIBetexplorer.com

Access daily football match schedules and 1X2 betting odds from BetExplorer. Retrieve scores, match status, and home/draw/away odds by date via one API endpoint.

This API takes change requests — .
Endpoint health
verified 7d ago
search_matches
1/1 passing latest checkself-healing
Endpoints
1
Updated
21d ago

What is the BetExplorer API?

The BetExplorer API exposes one endpoint — search_matches — that returns all football matches for a given date, covering 10 response fields per match including home/away teams, match status, final score, and 1X2 odds. Results are grouped by country and league, making it straightforward to ingest a full day's fixture list alongside opening or current betting lines in a single call.

This call costs1 credit / call— charged only on success
Try it
Date to retrieve matches for, ISO format YYYY-MM-DD. Defaults to today (UTC).
api.parse.bot/scraper/5daf70d1-eaad-46ba-afbb-c57c0d5ebc3e/<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/5daf70d1-eaad-46ba-afbb-c57c0d5ebc3e/search_matches?date=2026-08-14' \
  -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 betexplorer-com-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.

"""Walkthrough: BetExplorer SDK — bounded, re-runnable; every call capped."""
from parse_apis.betexplorer_com_api import BetExplorer, InvalidDate

client = BetExplorer()

# Search today's football matches with odds
for match in client.matches.search(limit=3):
    print(match.home_team, "vs", match.away_team, "| Odds:", match.odds_home, match.odds_draw, match.odds_away)

# Search a specific date
match = client.matches.search(date="2026-07-24", limit=1).first()
if match:
    print(match.country, match.league, match.home_team, match.away_team, match.score, match.status)

# Handle invalid date input
try:
    client.matches.search(date="not-a-date", limit=1).first()
except InvalidDate as e:
    print("invalid date:", e)

print("exercised: matches.search")
All endpoints · 1 totalmissing one? ·

Retrieve all football matches scheduled or completed for a given date, grouped by country and league. Each match includes home/away teams, match status (FIN, upcoming time, live minute), final score when available, and 1X2 betting odds (home win, draw, away win). Results cover all leagues worldwide for the requested day. Odds are average closing odds; upcoming matches or reserve-league matches may have null odds.

Input
ParamTypeDescription
datestringDate to retrieve matches for, ISO format YYYY-MM-DD. Defaults to today (UTC).
Response
{
  "type": "object",
  "fields": {
    "date": "the date queried, ISO format YYYY-MM-DD",
    "matches": "array of match objects with event_id, country, league, home_team, away_team, time, status, score, odds_home, odds_draw, odds_away"
  },
  "sample": {
    "data": {
      "date": "2026-07-24",
      "matches": [
        {
          "time": "",
          "score": "3:0",
          "league": "CECAFA Kagame Cup",
          "status": "FIN",
          "country": "Africa",
          "event_id": "QgLJobgJ",
          "away_team": "CF GR/SIAF",
          "home_team": "Vipers",
          "odds_away": "6.25",
          "odds_draw": "3.55",
          "odds_home": "1.45"
        },
        {
          "time": "",
          "score": "2:1",
          "league": "Liga Profesional",
          "status": "FIN",
          "country": "Argentina",
          "event_id": "pSjL3djo",
          "away_team": "Rosario Central",
          "home_team": "Belgrano",
          "odds_away": "2.97",
          "odds_draw": "2.91",
          "odds_home": "2.57"
        },
        {
          "time": "21:45",
          "score": null,
          "league": "Liga Profesional",
          "status": "",
          "country": "Argentina",
          "event_id": "MosWPn7m",
          "away_team": "Central Cordoba",
          "home_team": "Gimnasia Mendoza",
          "odds_away": null,
          "odds_draw": null,
          "odds_home": null
        }
      ]
    },
    "status": "success"
  }
}

About the BetExplorer API

What the API Returns

The search_matches endpoint returns a structured list of football matches for any date you specify via the date parameter (ISO format YYYY-MM-DD). Omit the date and it defaults to today in UTC. Each match object includes event_id, country, league, home_team, away_team, time, status, score, odds_home, odds_draw, and odds_away. The top-level response also echoes back the date queried for easy reference.

Match Status and Score Fields

The status field distinguishes between finished matches (FIN), live matches (current minute), and upcoming fixtures (scheduled kick-off time). The score field is populated for completed matches and is empty or null for fixtures that haven't started. This lets you filter server-side for finished results, in-play events, or pre-match odds depending on your use case.

Odds Coverage

Odds are returned as three discrete fields — odds_home, odds_draw, and odds_away — representing the standard 1X2 market. The values reflect the odds available on BetExplorer for each fixture. Coverage spans matches across multiple countries and leagues within a single response, grouped naturally by country and league in the returned array.

Reliability & maintenanceVerified

The BetExplorer API is a managed, monitored endpoint for Betexplorer.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when Betexplorer.com 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 Betexplorer.com 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
7d ago
Latest check
1/1 endpoint 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
  • Build a daily football fixture dashboard showing match times, leagues, and 1X2 odds in one view.
  • Track closing odds versus opening lines by calling search_matches at different points in the day.
  • Identify value bets by comparing odds_home, odds_draw, and odds_away across fixtures from multiple countries.
  • Populate a sports betting tracker app with match results using the score and status fields for completed games.
  • Generate a daily email digest of fixtures grouped by country and league with pre-match odds attached.
  • Backfill historical match outcomes and odds by querying past dates using the date parameter.
  • Filter live matches from a full-day fixture list by checking the status field for in-play minute values.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does BetExplorer have an official developer API?+
BetExplorer does not publish an official public developer API or documented endpoints for third-party use. This Parse API provides structured access to the match and odds data available on the site.
What does `search_matches` return for a date with no matches scheduled?+
The response returns the queried date field and an empty matches array. The endpoint does not return an error for valid dates that simply have no fixtures listed.
Does the API cover betting markets beyond 1X2, such as over/under or Asian handicap?+
Not currently. The API covers the 1X2 market only, returning odds_home, odds_draw, and odds_away per match. You can fork this API on Parse and revise it to add endpoints that pull additional market types.
Can I retrieve matches for a specific league or country only?+
The search_matches endpoint returns all matches for the given date without a built-in country or league filter — filtering needs to be done client-side on the country and league fields in the response. You can fork this API on Parse and revise it to add server-side filtering parameters for specific competitions.
How fresh is the data for live matches?+
The API reflects the state of BetExplorer at the time of the request. For in-play matches, status shows the current minute and score reflects the latest available result, but there is no push or streaming mechanism — you need to poll search_matches repeatedly to track live updates.
Page content last updated . Spec covers 1 endpoint from Betexplorer.com.
Related APIs in SportsSee all →
oddschecker.com API
Compare betting odds across multiple bookmakers for a wide range of sports, markets, and events on Oddschecker. Retrieve match details, race cards, market outcomes, and bookmaker-by-bookmaker odds to identify the best available prices.
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.
fussballdaten.de API
Find live soccer match schedules, scores, and team information across German leagues and Europe's top competitions, with the ability to filter by date, team, or league. Quickly look up upcoming fixtures, past results, and complete team schedules for Bundesliga, Premier League, La Liga, Serie A, Ligue 1, Champions League, and more.
oddspedia.com API
Find profitable betting opportunities and compare real-time odds across dozens of bookmakers to identify sure bets, value bets, and dropping odds for various sports. Filter matches by sport, league, and region to make informed betting decisions with comprehensive odds comparisons and match information.
flashscore.com API
Search teams and competitions, pull daily fixtures and live scores, and retrieve match details including events, statistics, and league standings from FlashScore.
aiscore.com API
Track upcoming football matches and analyze team performance with real-time fixtures and the last 5 match statistics for any team in your chosen fixture. Make informed predictions by accessing detailed team form data and scheduled games for any date.
livescore.com API
Track live scores and detailed statistics across football, hockey, basketball, tennis, and cricket with the ability to filter by date, sport, and league. Access match summaries, team overviews, standings, fixtures, and results to stay updated on your favorite competitions and teams.
asianbetsoccer.com API
Track live soccer match scores and upcoming games while monitoring Asian handicap odds from multiple bookmakers to get instant alerts when betting lines match your criteria. Access real-time odds across all available leagues and bookmakers in one place.