bet365.bet.br APIbet365.bet.br ↗
Access bet365.bet.br betting odds, live in-play scores, featured events, and sport categories via 6 structured JSON endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/918eea81-bc93-4371-9f5f-ba15d447636d/get_home_featured_events' \ -H 'X-API-Key: $PARSE_API_KEY'
Extracts featured sports sections, betting markets, promotional banners, and popular bets from the bet365 Brazil homepage. Returns a hierarchical tree structure with classes, events, markets, and selections, plus the raw parsed sections.
No input parameters required.
{
"type": "object",
"fields": {
"tree": "array of hierarchical event/market objects with type CL (class), EV (event), MA (market), PA (selection)",
"raw_sections": "array of raw parsed record arrays from the delimited response format"
},
"sample": {
"data": {
"tree": [
{
"IT": "#CR#LEAGUES#CONT#",
"type": "CL",
"events": [
{
"type": "EV",
"markets": [
{
"CL": "1",
"EF": "0",
"IG": "zClass_Soccer.svg",
"IM": "zClass_Soccer",
"NA": "Futebol",
"PD": "#AS#B1#",
"type": "MA",
"selections": []
}
]
}
]
}
],
"raw_sections": [
[
{
"type": "F"
},
{
"AD": "1",
"CO": "1",
"IT": "#HO#COL1#PDCOL1#",
"type": "PS"
}
]
]
},
"status": "success"
}
}About the bet365.bet.br API
This API exposes 6 endpoints covering bet365 Brazil's homepage featured events, live in-play odds, match scores, and sport category navigation. The get_home_featured_events endpoint returns a full hierarchical tree of classes, events, markets, and selections alongside raw parsed sections. Other endpoints cover live games with real-time odds, completed match scores, sport-specific markets by path identifier, and a dedicated Formula 1 convenience endpoint.
Featured Events and Homepage Data
The get_home_featured_events endpoint returns two top-level fields: tree and raw_sections. The tree is a hierarchical array of typed nodes — CL (class), EV (event), MA (market), and PA (selection) — representing the full structure of the bet365 Brazil homepage at the time of the request. raw_sections provides the same data as flat parsed record arrays, useful when you need to process individual entries without traversing the tree. No inputs are required.
Sport Categories and Event Navigation
get_sport_categories returns an array of sport and competition objects, each with a name, id, and pd field. The pd field is a path identifier string (e.g., #AS#B1# for Soccer) used as the required pd_path input to get_sport_events. This lets you dynamically discover all available sports and then query their betting markets without hardcoding any identifiers. get_formula1_events is a zero-input shortcut that targets the Formula 1 path directly, returning the same path and tree fields as get_sport_events.
Live In-Play Data and Scores
get_live_events returns a tree array of currently active matches including real-time odds and scores, plus a message string that may carry status information. get_scores_placares targets the scores section specifically, returning a path string and a tree array covering both live and recently completed match results. Neither endpoint requires any input parameters.
- Monitor real-time odds shifts across in-play markets using
get_live_eventstree data - Build a sport navigation index by mapping
nameandpdfields fromget_sport_categories - Track featured homepage promotions and popular bet selections via
get_home_featured_events - Pull live and final match scores from
get_scores_placaresfor a Brazilian sports results feed - Query betting markets for a specific competition by passing its
pd_pathtoget_sport_events - Aggregate Formula 1 race betting markets without managing path identifiers using
get_formula1_events - Analyze market and selection structure by consuming the
CL/EV/MA/PAtyped nodes from the event tree
| 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 bet365 have an official developer API?+
What does the `tree` field returned by `get_home_featured_events` contain?+
tree field is a hierarchical array where each node carries a type identifier: CL for class (sport grouping), EV for event, MA for market, and PA for selection (individual bet option). Nodes are nested so you can traverse from a sport class down to individual price selections.How do I query events for a sport other than Formula 1?+
get_sport_categories first to retrieve the full list of sports. Each object includes a pd path identifier. Pass that value as the pd_path parameter to get_sport_events to retrieve markets for that sport. get_formula1_events exists as a no-input shortcut for the F1 path only.Does this API cover historical odds or past event results beyond recent scores?+
get_scores_placares. Historical odds archives and full match history are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting historical data sections if they become accessible.