The BreakingBet API is a programmatic interface that lets you receive service data directly, without using the website. The same data types are available through the API: arbitrage opportunities (surebets), value bets, and middles.
The API is designed for bot developers, analytics platforms, monitoring systems, and anyone who wants to integrate BreakingBet data into their own tools.
Each data type is represented by a separate service in two modes — prematch and live:
Data is updated every 1–3 seconds.
To use the API you need:
Go to the API pricing page. Unlike regular plans, the API subscription is configured individually:

Before purchasing, you can request demo access — contact us.
Working with the API consists of five steps:
After subscribing, go to the API section in your profile. There you will find:

A short-lived token is required for each data request. You can obtain it with a POST request:
curl https://breaking-bet.com/access_keys/{ACCESS_KEY_ID}/access_tokens -H "Content-Type: application/json" -H "Authorization: ApiKey {YOUR_SECRET_KEY}" -d '{"service": "arbs_prematch"}'
Available service values:
arbs_prematch / arbs_live
valuebets_prematch / valuebets_live
middles_prematch / middles_live
The token lifetime is 5 minutes. You need to request a new one after it expires.
Before retrieving data, you need to configure a filter — set selection criteria (sports, bookmakers, profit range and other parameters).
Data requests are sent to the corresponding service host. For example, for prematch arbs:
POST https://arbs.prematch.api.breaking-bet.com/filters/{ACCESS_KEY_ID}/items
Service hosts:
arbs.prematch.api.breaking-bet.com / arbs.live.api.breaking-bet.com
middles.prematch.api.breaking-bet.com / middles.live.api.breaking-bet.com
valuebets.prematch.api.breaking-bet.com / valuebets.live.api.breaking-bet.com
To decode identifiers in responses (sports, bookmakers, outcome types), use the Dictionaries API at docs.api.breaking-bet.com.
Full technical documentation with descriptions of all endpoints, parameters, and response formats is available at:
In the documentation you will find:
If you have questions about the API or want to request demo access — contact us or email support@breaking-bet.com.