surebet.com 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.
curl -X GET 'https://api.parse.bot/scraper/4302d8bc-f259-487f-8b4d-4a05ef9a24d1/get_surebets?page=1&max_profit=1.0' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch surebets (arbitrage opportunities) with optional filters. Returns paginated results sorted by the specified order. Note: Profit > 1% typically requires a paid account.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| order | string | Sort order. Accepted values: profit, created_at, start_at, roi. |
| max_profit | number | Maximum profit percentage filter (e.g. 1.0 for 1%). |
| min_profit | number | Minimum profit percentage filter (e.g. 0.5 for 0.5%). |
{
"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": 322.2598,
"profit": 0.9994,
"prongs": [
"{\"id\":-1384543204,\"tournament\":\"World - World Championship\",\"teams\":[\"Canada\",\"Sweden\"],\"value\":3.1,\"bk\":\"netbet_ro\",\"sport_id\":18}"
],
"top_synonym_id": null
}
]
},
"status": "success"
}
}About the surebet.com 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.
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.
- Screen surebets in real time by filtering
min_profitandmax_profitto surface only actionable arbitrage windows. - Build a ROI-ranked dashboard by querying
get_surebetswithorder=roiand displaying top opportunities. - Calculate expected value for middles trading using the
ev,probability, andbefields fromget_middles. - Monitor bookmaker availability by polling
get_bookmakersfor changes indisabledortemporary_disabledstatus flags. - Map sport coverage to internal IDs by consuming
get_sportsand usingrefvalues for consistent cross-endpoint referencing. - Build a valuebet tracker that pages through
get_valuebetsresults and logs prong-level odds changes over time. - Cross-reference active bookmakers against middle opportunities to filter out legs involving currently disabled bookmakers.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does SureBet.com have an official developer API?+
How does profit filtering work on the get_surebets endpoint?+
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?+
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?+
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.