Discover/SureBet API
live

SureBet APIsurebet.com

Access real-time surebets, middles, and valuebets from SureBet.com. Filter by profit %, sort by ROI, and retrieve full bookmaker and sport metadata.

Endpoint health
verified 2h ago
get_sports
get_middles
get_valuebets
get_bookmakers
get_surebets
5/5 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the SureBet API?

This API exposes 5 endpoints covering SureBet.com's core betting opportunity data: arbitrage surebets, middles, and valuebets, plus reference data for bookmakers and sports. The get_surebets endpoint returns paginated arbitrage opportunities with per-leg prong details, profit percentages, and ROI figures. Filters for minimum and maximum profit let you target specific thresholds, and results can be sorted by profit, creation time, start time, or ROI.

Try it
Page number for pagination.
Sort order for results.
Maximum profit percentage filter (e.g. 2.0 for 2%).
Minimum profit percentage filter (e.g. 0.5 for 0.5%).
api.parse.bot/scraper/4302d8bc-f259-487f-8b4d-4a05ef9a24d1/<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/4302d8bc-f259-487f-8b4d-4a05ef9a24d1/get_surebets?page=1&order=profit&max_profit=5.0&min_profit=0.1' \
  -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 surebet-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: SureBet SDK — arbitrage, valuebets, middles, and reference data."""
from parse_apis.surebet_api import SureBet, SurebetOrder, PageNotFound

client = SureBet()

# List surebets sorted by profit, capped at 3 items
for surebet in client.surebets.list(order=SurebetOrder.PROFIT, min_profit=0.5, limit=3):
    print(f"Profit: {surebet.profit}% | ROI: {surebet.roi}% | Legs: {len(surebet.prongs)}")

# Drill into one middle opportunity
middle = client.middles.list(limit=1).first()
if middle:
    print(f"Middle EV: {middle.ev} | Bet: {middle.bet} | Win: {middle.win} | P: {middle.probability}")

# List valuebets
valuebet = client.valuebets.list(limit=1).first()
if valuebet:
    print(f"Valuebet legs: {len(valuebet.prongs)}")

# Load reference data: bookmakers and sports
for bm in client.bookmakers.list(limit=5):
    print(f"Bookmaker: {bm.name} (id={bm.id}, disabled={bm.disabled})")

# Typed error handling on sports list
try:
    for sport in client.sports.list(limit=5):
        print(f"Sport: {sport.name} (ref={sport.ref})")
except PageNotFound as exc:
    print(f"Page not found: {exc}")

print("exercised: surebets.list / middles.list / valuebets.list / bookmakers.list / sports.list")
All endpoints · 5 totalmissing one? ·

Fetch surebets (arbitrage opportunities) with optional profit filters and sort order. Returns paginated results. Each surebet contains prongs (JSON-encoded leg details with bookmaker, odds, teams, tournament), profit percentage, and ROI. Paginates via integer page parameter. Note: Profit > 1% typically requires a paid account on the source site.

Input
ParamTypeDescription
pageintegerPage number for pagination.
orderstringSort order for results.
max_profitnumberMaximum profit percentage filter (e.g. 2.0 for 2%).
min_profitnumberMinimum profit percentage filter (e.g. 0.5 for 0.5%).
Response
{
  "type": "object",
  "fields": {
    "page": "integer page number",
    "items": "array of surebet opportunity objects, each containing prongs (array of JSON-encoded leg details), profit, and roi"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "roi": 121.38,
          "profit": 1,
          "prongs": [
            "{\"id\":178437569,\"tournament\":\"World - World Cup 2026\",\"teams\":[\"Australia\",\"Turkey\"],\"value\":1.37,\"bk\":\"pin_up\",\"sport_id\":15}",
            "{\"id\":192650779,\"tournament\":\"International - FIFA World Cup\",\"teams\":[\"Australia\",\"Turkey\"],\"value\":2.75,\"bk\":\"cloudbet\",\"sport_id\":15}"
          ],
          "top_synonym_id": null
        }
      ]
    },
    "status": "success"
  }
}

About the SureBet API

Arbitrage and Opportunity Endpoints

The get_surebets endpoint returns paginated surebet objects, each containing a prongs array of JSON-encoded leg details alongside profit and roi fields. You can narrow results using min_profit and max_profit parameters (expressed as percentages, e.g. 0.5 for 0.5%) and control sort order via the order parameter, which accepts profit, created_at, start_at, or roi. Note that opportunities with profit above 1% are only accessible with a paid account.

The get_middles endpoint surfaces overlapping-bet opportunities. Each middle object includes prongs for the individual legs plus ev (expected value), bet, probability, win, and be (break-even) fields, giving you the full statistical picture of each middle. The get_valuebets endpoint returns overvalued-bet opportunities in a similar paginated format, with prongs detail per item. Both endpoints accept a page parameter for pagination.

Reference / Metadata Endpoints

get_bookmakers returns the full list of bookmakers supported on SureBet.com. Each bookmaker object includes name, id, ref, link, and three status flags: disabled, checked, and temporary_disabled. These flags let you identify which bookmakers are currently active before building filtering logic in your application.

get_sports returns a list of all covered sports, each with a name, id, and ref. Use these IDs as stable references when you need to cross-reference sport coverage against opportunities returned by the betting endpoints.

Reliability & maintenanceVerified

The SureBet API is a managed, monitored endpoint for surebet.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when surebet.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 surebet.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
2h ago
Latest check
5/5 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
  • Screen surebets in real time by filtering min_profit and max_profit to surface only actionable arbitrage windows.
  • Build a ROI-ranked dashboard by querying get_surebets with order=roi and displaying top opportunities.
  • Calculate expected value for middles trading using the ev, probability, and be fields from get_middles.
  • Monitor bookmaker availability by polling get_bookmakers for changes in disabled or temporary_disabled status flags.
  • Map sport coverage to internal IDs by consuming get_sports and using ref values for consistent cross-endpoint referencing.
  • Build a valuebet tracker that pages through get_valuebets results and logs prong-level odds changes over time.
  • Cross-reference active bookmakers against middle opportunities to filter out legs involving currently disabled bookmakers.
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 SureBet.com have an official developer API?+
SureBet.com does not publish a documented public developer API. Data access is provided through this Parse API.
How does profit filtering work on the get_surebets endpoint?+
The endpoint accepts min_profit and max_profit as numeric parameters representing percentage values (e.g., 1.0 equals 1%). Results with profit above 1% require a paid account; free-tier requests will not return those opportunities regardless of the filter values set.
What statistical fields does get_middles return that get_surebets does not?+
get_middles returns ev (expected value), probability, win, and be (break-even) per opportunity in addition to the prongs array, making it richer for statistical analysis. get_surebets focuses on profit and roi without those probabilistic fields.
Can I filter surebets or valuebets by a specific sport or bookmaker?+
The current endpoints do not accept sport ID or bookmaker ID as filter parameters. You can retrieve the full sport and bookmaker reference data via get_sports and get_bookmakers and apply filtering client-side. You can also fork this API on Parse and revise it to add server-side sport or bookmaker filtering if needed.
Is historical surebet data available through this API?+
The endpoints return current opportunities and do not expose a historical data range or time-window parameter. The order=created_at and order=start_at sort options affect result ordering but do not extend coverage to past events. You can fork this API on Parse and revise it to add an archival or time-range endpoint if your use case requires historical records.
Page content last updated . Spec covers 5 endpoints from surebet.com.
Related APIs in SportsSee all →
pt.surebet.com API
Access live arbitrage, value, and middle betting opportunities from the SureBet platform to identify profitable bets across multiple sportsbooks. Get real-time data on guaranteed profits, undervalued odds, and middle bet positions directly from SureBet's official data source.
betmonitor.com API
Find real-time arbitrage opportunities across sports and betting markets with guaranteed profit potential. Access match details, the highest odds available, and a complete breakdown of which bookmakers offer each surebet combination.
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.
sportsbookreview.com API
Compare sportsbooks and their ratings, view real-time betting odds across sports and specific matchups, monitor how lines move over time, and discover expert picks and promotions all in one place. Make more informed betting decisions by accessing comprehensive sportsbook reviews, odds comparisons, and professional analysis.
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.
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.
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.