unibet.fr APIunibet.fr ↗
Access live and upcoming sports betting data from Unibet France: events, competitions, full market odds, boosted offers, and odds format conversion across all sports.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/c238b958-159d-4a14-b159-2df33664869d/get_sports' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the full list of available sports on Unibet France, including event counts and term keys for use with other endpoints.
No input parameters required.
{
"type": "object",
"fields": {
"sports": "array of sport objects with id, name, english_name, term_key, event_count, bo_count"
},
"sample": {
"data": {
"sports": [
{
"id": 1000093190,
"name": "Football",
"bo_count": 137043,
"term_key": "football",
"event_count": 3238,
"english_name": "Football"
}
]
},
"status": "success"
}
}About the unibet.fr API
The Unibet France API exposes 9 endpoints covering sports listings, competitions, live and upcoming events, full market odds, and boosted offers from unibet.fr. Use get_event_odds to retrieve every available bet offer and market for a specific event, or get_live_events to pull all in-play fixtures across all sports at once. Response fields include numeric event IDs, competition paths, outcome odds in Kambi integer format, and pre-pack bet builder selections.
Sports, Competitions, and Events
Start with get_sports to retrieve the full catalog of available sports. Each sport object includes an id, name, english_name, term_key, event_count, and bo_count. The term_key field (e.g. football, tennis, basketball) feeds directly into get_sport_events and get_competitions. get_competitions returns leagues and tournaments with id, name, english_name, path, and event_count; the path field (e.g. football/france/ligue_1) is the required input for get_competition_events, which narrows results to a single league or tournament.
Live Events and Full Market Odds
get_live_events returns all currently in-play fixtures across every sport simultaneously — no sport filter is needed. Each event object includes id, name, start, sport, group, path, state, and main_odds. To get every available market for a single fixture, call get_event_odds with the numeric event_id. The response contains an events array with metadata, a betOffers array detailing every market type with its criterion, outcomes, and odds, plus a prePacks array for bet builder selections.
Search and Boosted Odds
search_events accepts a query string and matches against event names and competition group names across all sports — useful for finding fixtures by team or tournament name (e.g. Paris, Roland Garros). get_boosted_odds returns all currently active odds boosts as an array of boosted event objects; when no boosts are live, the endpoint returns an empty array rather than an error.
Odds Format Conversion
get_odds_format is a local conversion utility. It accepts a Kambi odds integer (where the value divided by 1000 equals decimal odds — e.g. 3850 yields 3.85) and returns decimal, american, and fractional representations. Both american and fractional are always included in the response regardless of whether target_format is specified. This is useful when normalizing odds from betOffers or main_odds fields into a format suited to your application.
- Monitor all in-play fixtures and their live odds using
get_live_eventsfor a real-time betting dashboard. - Track odds movement for a specific Ligue 1 match by repeatedly calling
get_event_oddswith the sameevent_id. - Enumerate all competitions in a sport via
get_competitionsto build a hierarchical league browser. - Search for fixtures by team name using
search_eventsto quickly locate events without knowing the competition path. - Convert Kambi odds integers from
main_oddsorbetOffersto American or fractional format usingget_odds_format. - Poll
get_boosted_oddson a schedule to alert users when enhanced odds promotions become active. - Compare market coverage across events in a specific league by combining
get_competition_eventswithget_event_oddscalls.
| 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 Unibet France have an official developer API?+
What does `get_event_odds` return beyond the primary market?+
get_event_odds returns a betOffers array containing every available market for the event — not just the main 1X2 or moneyline. Each bet offer includes a criterion describing the market type (e.g. both teams to score, Asian handicap), an outcomes array with each selection, and the associated Kambi odds integers. It also returns a prePacks array for bet builder pre-built combinations, plus the event metadata in the events array.Does the API cover historical odds or past results?+
Are odds from `get_boosted_odds` distinguished from standard odds in `get_event_odds`?+
get_boosted_odds is a dedicated endpoint returning only the current active boosts as a separate event array. Standard get_event_odds calls return the full market odds for a given event without a specific flag distinguishing boosted outcomes from regular ones. If you need to cross-reference, you would match event IDs between the two endpoints.Does the API support filtering events by date range or kick-off time?+
get_sport_events and get_competition_events return all upcoming events for the given sport or competition without a date filter input. Each event object includes a start field you can use to filter client-side. You can fork the API on Parse and revise it to add date-range parameters to those endpoints.