Discover/Coolbet API
live

Coolbet APIcoolbet.ee

Access Coolbet.ee sports betting data via 6 endpoints: sports tree, events by category, live in-play odds, event markets, recommendations, and promotions.

Endpoint health
verified 3d ago
get_sports_tree
get_events_by_category
get_event_details
get_live_events
get_promotions
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Coolbet API?

The Coolbet.ee API provides structured access to sports betting data through 6 endpoints covering everything from the full sports navigation tree to granular per-event markets. Use get_events_by_category to pull upcoming matches with odds for specific leagues, or get_live_events to stream in-play events grouped by league. Response fields include team names, start times, market outcomes, and odds across multiple market types.

Try it

No input parameters required.

api.parse.bot/scraper/72d76056-f538-4af4-9a0a-7977f194a32c/<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/72d76056-f538-4af4-9a0a-7977f194a32c/get_sports_tree' \
  -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 coolbet-ee-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.

from parse_apis.coolbet_sports_betting_api import Coolbet, SportCategory, Match, LeagueCategory, Promotion, EventDetail

coolbet = Coolbet()

# Get the sports navigation tree
tree = coolbet.sportcategories.tree()
print(tree.name, tree.depth)

for sport in tree.children:
    print(sport.name, sport.icon, sport.id)

# Fetch recommended/popular matches
for match in coolbet.matches.recommended():
    print(match.name, match.home_team_name, match.away_team_name, match.match_start)
    for market in match.markets:
        print(market.name, market.view_type)
        for outcome in market.outcomes:
            print(outcome.name, outcome.result_key)
    break

# Get event details for a specific match
detail = coolbet.match(id=4756043).details()
print(detail.match.home_team_name, detail.match.away_team_name, detail.match.layout)
for group in detail.fo_groups:
    print(group.name, group.position)
for mtg in detail.markets:
    print(mtg.market_type_name, mtg.view_type)

# Browse events by league category
for league in coolbet.leaguecategories.by_category(category_id=18975):
    print(league.name, league.region_name)
    for match in league.matches:
        print(match.name, match.status, match.markets_total_count)

# Check live events
for league in coolbet.matches.live():
    print(league.name, league.sport_id)
    for match in league.matches:
        print(match.name, match.status)

# List active promotions
for promo in coolbet.promotions.list():
    print(promo.name_external, promo.code, promo.bonus_type, promo.start_time, promo.end_time)
    print(promo.products.casino, promo.products.sportsbook)
All endpoints · 6 totalmissing one? ·

Retrieve the full sports navigation tree with categories and subcategories. Returns a hierarchical tree rooted at a single node with nested children representing sports, regions, and leagues. Each leaf node has an id usable as category_id in get_events_by_category.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "id": "integer root node ID",
    "name": "string root node name",
    "depth": "integer depth level of root node",
    "children": "array of sport category objects, each containing nested children for regions and leagues"
  },
  "sample": {
    "data": {
      "id": 1,
      "name": "Root",
      "slug": "",
      "depth": 1,
      "order": null,
      "children": [
        {
          "id": 62,
          "icon": "football",
          "name": "Jalgpall",
          "slug": "jalgpall",
          "depth": 2,
          "order": 1,
          "children": [
            {
              "id": 18769,
              "icon": "GB-ENG",
              "name": "Inglismaa",
              "slug": "inglismaa",
              "depth": 3,
              "order": 2,
              "children": [
                {
                  "id": 18975,
                  "icon": null,
                  "name": "Premier League",
                  "slug": "meistriliiga",
                  "depth": 4,
                  "order": 1,
                  "children": [],
                  "fullSlug": "jalgpall/inglismaa/meistriliiga",
                  "matches_count": 1,
                  "sport_category_id": 62
                }
              ],
              "fullSlug": "jalgpall/inglismaa",
              "country_code": "GB-ENG",
              "sport_category_id": 62
            }
          ],
          "fullSlug": "jalgpall",
          "sport_category_id": 62
        }
      ],
      "fullSlug": ""
    },
    "status": "success"
  }
}

About the Coolbet API

Sports Navigation and Event Discovery

get_sports_tree returns a hierarchical tree of sports, regions, and leagues rooted at a single node. Each node carries an id, name, and depth, with nested children arrays for sub-levels. Leaf node IDs feed directly into get_events_by_category as the category_id parameter — for example, 18975 for the Premier League or 19104 for La Liga. The events response includes categories (league objects containing matches and market_types), a filterUsed string, and availableFilters for switching between views like upcoming and today.

Event Details and Markets

get_event_details accepts a match_id — sourced from get_events_by_category, get_live_events, or get_recommendations — and returns the full market depth for that match. The response includes a match object with team names, start time, and betbuilder_id, an array of foGroups describing market group definitions (Winner, Totals, Mixed), and a markets array containing all available outcomes with odds. If match_id is omitted, the endpoint automatically resolves a popular event from site recommendations.

Live Events and Recommendations

get_live_events returns currently in-play events with a hasMore boolean for offset-based pagination via the offset and limit parameters. The categories array will be empty when no events are active. get_recommendations returns a ranked list of popular matches in a matches array alongside market_types_by_league_category, a mapping of category ID strings to market type definitions useful for decoding market data across different leagues.

Promotions

get_promotions returns active bonus campaigns with fields including id, name, code, bonus_type, start_time, end_time, description, images, and products. This is useful for tracking current promotional offers without needing to parse the site manually.

Reliability & maintenanceVerified

The Coolbet API is a managed, monitored endpoint for coolbet.ee — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when coolbet.ee 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 coolbet.ee 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
3d ago
Latest check
6/6 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
  • Aggregate pre-match odds from Coolbet for specific leagues using category IDs from get_sports_tree
  • Monitor live in-play events and odds changes via get_live_events with offset pagination
  • Build an odds comparison tool by extracting market outcomes and odds from get_event_details
  • Track popular betting events using get_recommendations and the market_types_by_league_category mapping
  • Audit active Coolbet promotions including bonus codes and validity periods via get_promotions
  • Map the full sports hierarchy to identify available category IDs before querying events
  • Power a betting analytics dashboard with structured match metadata including betbuilder_id and foGroups
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 Coolbet have an official public developer API?+
Coolbet does not publish a documented public developer API or API portal. This Parse API provides structured access to the same data available on coolbet.ee.
How do I find the right category_id for a specific league like the Premier League?+
Call get_sports_tree first. It returns a nested tree of sports, regions, and leagues. Traverse the children arrays to find the target league node, then use its id value as the category_id parameter in get_events_by_category. For example, the Premier League uses ID 18975.
What happens when no live events are currently active in get_live_events?+
The endpoint still returns a valid response, but the categories array will be empty. The hasMore field will be false. You can poll the endpoint and check categories.length to detect when live events become available.
Does the API include historical match results or settled bet data?+
Not currently. The API covers active upcoming events, live in-play events, recommendations, and promotions — all forward-looking. Historical results and settled markets are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting historical match data.
Can I filter events by date range within get_events_by_category?+
The endpoint exposes a limit parameter and returns an availableFilters array in the response indicating which filters the source supports (such as today or upcoming). There is no explicit date-range input parameter currently. You can fork this API on Parse and revise it to add date-range filtering as an input parameter mapped to the available filter values.
Page content last updated . Spec covers 6 endpoints from coolbet.ee.
Related APIs in SportsSee all →
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.
unibet.com API
Access live betting odds, browse sports categories and upcoming matches, and search for specific events across multiple leagues in real-time. Get detailed event information including current odds for thousands of sports matchups to inform your betting decisions.
betano.com API
Access sports data from the Betano platform across multiple regional sites. Retrieve available regions, browse sports categories, and view event details including schedules, participating teams or players, and betting markets for upcoming and live matches.
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.
betpawa.com.gh API
Access upcoming, live, and popular sports events from BetPawa Ghana with real-time odds, markets, and detailed match statistics across multiple sports and leagues. Retrieve comprehensive event information including season fixtures, league details, and in-depth match stats.
bet365.bet.br API
Access live betting odds, featured sports events, and real-time scores directly from bet365 Brazil's platform across multiple sports including Formula 1 and in-play markets. Get current match results, browse available betting categories, and view homepage promotions all through structured data endpoints.
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.