Discover/Co API
live

Co APIbetway.co.mz

Access Betway Mozambique sports odds, live in-play scores, and league listings via 3 structured endpoints. Filter by sport, league, and region.

Endpoint health
verified 3h ago
get_leagues
get_highlights
get_live_events
3/3 passing latest checkself-healing
Endpoints
3
Updated
3h ago

What is the Co API?

The Betway Mozambique API provides structured access to sports betting data across 3 endpoints, covering today's highlighted events, available leagues by sport, and live in-play matches with real-time scores. The get_highlights endpoint returns 1X2, Double Chance, and Both Teams To Score odds for upcoming events, while get_live_events delivers current match scores alongside live odds across multiple sports including soccer, basketball, cricket, and tennis.

Try it
Number of events to skip for pagination.
Maximum number of events to return per request.
Sport identifier. Accepted values: soccer, tennis, cricket, basketball, rugby-union, table-tennis, baseball, ice-hockey, handball, american-football, volleyball, boxing, ufc---martial-arts, darts, badminton, futsal.
Filter by specific league ID (e.g. fifa-world-cup, premier-league). Obtainable from get_leagues endpoint.
ISO country code for the Betway region (e.g. MZ for Mozambique).
Locale/culture code for response language (e.g. pt-MZ for Portuguese-Mozambique).
When true, results are sorted by lowest odds first (strongest favorites). When false, results are in chronological order.
api.parse.bot/scraper/12677139-4f51-4b75-9aa1-52949e848003/<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/12677139-4f51-4b75-9aa1-52949e848003/get_highlights?skip=0&take=20&sport_id=soccer&country_code=MZ&culture_code=pt-MZ&sort_by_lowest_odds=true' \
  -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 betway-co-mz-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.


"""Walkthrough: Betway Mozambique sports odds — bounded, re-runnable."""
from parse_apis.betway_co_mz_api import Betway, SportId, SortByLowestOdds, NotFoundError

client = Betway()

# Browse available soccer leagues
for league in client.leagues.list(sport_id=SportId.SOCCER, limit=5):
    print(league.league_name, "-", league.region_name)

# Get today's highlighted games sorted by lowest odds (strongest favorites)
soccer = client.sport(SportId.SOCCER)
for event in soccer.highlights(sort_by_lowest_odds=SortByLowestOdds.TRUE, limit=5):
    print(f"{event.home_team} vs {event.away_team} | {event.league} | "
          f"Odds: {event.odds_home}/{event.odds_draw}/{event.odds_away} | "
          f"Favorite: {event.favorite} (lowest: {event.lowest_odd})")

# Check live in-play events with real-time scores
live_event = soccer.live(limit=1).first()
if live_event:
    print(f"LIVE: {live_event.home_team} {live_event.score_home} - "
          f"{live_event.score_away} {live_event.away_team}")

# Handle errors for invalid sport lookups
try:
    bad_sport = client.sport("invalid_sport_xyz")
    for ev in bad_sport.highlights(limit=1):
        print(ev.home_team)
except NotFoundError as exc:
    print(f"Sport not found: {exc}")

print("exercised: leagues.list / sport.highlights / sport.live / NotFoundError")
All endpoints · 3 totalmissing one? ·

Retrieve today's highlighted/upcoming sports events with 1X2 odds (Win/Draw/Win), Double Chance, and Both Teams To Score markets. Results can be sorted by lowest odds to identify favorites most likely to win. Each event includes home/away team names, league, start time, and decimal odds.

Input
ParamTypeDescription
skipstringNumber of events to skip for pagination.
takestringMaximum number of events to return per request.
sport_idstringSport identifier. Accepted values: soccer, tennis, cricket, basketball, rugby-union, table-tennis, baseball, ice-hockey, handball, american-football, volleyball, boxing, ufc---martial-arts, darts, badminton, futsal.
league_idstringFilter by specific league ID (e.g. fifa-world-cup, premier-league). Obtainable from get_leagues endpoint.
country_codestringISO country code for the Betway region (e.g. MZ for Mozambique).
culture_codestringLocale/culture code for response language (e.g. pt-MZ for Portuguese-Mozambique).
sort_by_lowest_oddsstringWhen true, results are sorted by lowest odds first (strongest favorites). When false, results are in chronological order.
Response
{
  "type": "object",
  "fields": {
    "events": "array of event objects with event_id, home_team, away_team, league, region, sport_id, start_time, is_live, odds_home, odds_draw, odds_away, lowest_odd, favorite",
    "total_events": "integer"
  },
  "sample": {
    "data": {
      "events": [
        {
          "league": "1. deild",
          "region": "Iceland",
          "is_live": false,
          "event_id": 72010154,
          "favorite": "home",
          "sport_id": "soccer",
          "away_team": "KF Aegir",
          "home_team": "Afturelding",
          "odds_away": 8.2,
          "odds_draw": 6.4,
          "odds_home": 1.21,
          "lowest_odd": 1.21,
          "start_time": "2026-06-29 19:15 UTC"
        },
        {
          "league": "FIFA World Cup",
          "region": "International",
          "is_live": false,
          "event_id": 53452541,
          "favorite": "home",
          "sport_id": "soccer",
          "away_team": "Paraguai",
          "home_team": "Alemanha",
          "odds_away": 8.6,
          "odds_draw": 4.9,
          "odds_home": 1.34,
          "lowest_odd": 1.34,
          "start_time": "2026-06-29 20:30 UTC"
        }
      ],
      "total_events": 19
    },
    "status": "success"
  }
}

About the Co API

Highlighted Events and Odds Markets

The get_highlights endpoint returns today's upcoming sports events with odds across three markets: 1X2 (Win/Draw/Win), Double Chance, and Both Teams To Score. Each event object includes event_id, home_team, away_team, league, region, sport_id, start_time, is_live, and decimal odds fields (odds_home, odds_draw, and corresponding market values). The sort_by_lowest_odds parameter orders results by the shortest odds first, making it straightforward to surface the strongest favorites without client-side sorting. Pagination is handled via skip and take parameters, and results can be filtered to a specific league using a league_id obtained from get_leagues.

League and Region Discovery

The get_leagues endpoint returns a flat list of all available leagues for a given sport, each entry carrying region_id, region_name, league_id, league_name, and sport_id. This is the correct source for valid league_id values to pass into get_highlights. The sport_id parameter accepts named slugs such as soccer, tennis, cricket, basketball, rugby-union, table-tennis, and baseball, making it possible to enumerate the full betting tree for any supported sport.

Live In-Play Events

The get_live_events endpoint returns events currently being played, with score_home and score_away reflecting the live score state alongside real-time odds_home and odds_away fields. The is_live flag confirms active match status. Because live coverage depends on matches being in progress, this endpoint may return zero results when no games are active for the requested sport_id. Both get_live_events and get_highlights accept a culture_code parameter (e.g. pt-MZ) to control response language, and a country_code parameter to scope results to the Betway Mozambique region.

Reliability & maintenanceVerified

The Co API is a managed, monitored endpoint for betway.co.mz — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when betway.co.mz 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 betway.co.mz 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
3h ago
Latest check
3/3 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
  • Build a dashboard that lists today's soccer favorites by sorting get_highlights results with sort_by_lowest_odds=true
  • Monitor live match scores in real time for in-play betting applications using score_home and score_away from get_live_events
  • Enumerate all available leagues per sport via get_leagues to populate a sport/competition navigation tree
  • Filter highlighted events to a specific competition such as the Premier League by passing a league_id to get_highlights
  • Compare 1X2 and Double Chance odds across events in a single sport to build an odds comparison tool
  • Track which live events have shifted odds relative to pre-match values by cross-referencing get_highlights and get_live_events responses
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 Betway have an official public developer API?+
Betway does not publish a documented public developer API for third-party use. This Parse API provides structured access to the betting data available on betway.co.mz.
What odds markets does `get_highlights` return, and can I filter by league?+
get_highlights returns three markets per event: 1X2 (Win/Draw/Win), Double Chance, and Both Teams To Score, all in decimal format. You can filter results to a specific league by passing a league_id value obtained from the get_leagues endpoint. Pagination is supported via the skip and take parameters.
Does `get_live_events` always return results?+
Not always. The endpoint only returns events that are actively in progress at the time of the request. If no matches are live for the requested sport_id, the response will contain an empty events array and a total_events of zero. Polling at regular intervals is the standard pattern for tracking live event availability.
Are betting markets beyond 1X2, Double Chance, and Both Teams To Score available — such as Asian handicaps or over/under totals?+
Not currently. The three endpoints cover 1X2, Double Chance, and Both Teams To Score markets. Asian handicap, over/under, and other specials markets are not exposed in the current response shape. You can fork this API on Parse and revise it to add endpoints covering those additional markets.
Is the `culture_code` parameter needed for all endpoints?+
culture_code is accepted by get_highlights and get_live_events but is not a parameter on get_leagues. Passing pt-MZ targets the Portuguese-Mozambique locale. If omitted, the API falls back to a default language setting. For Mozambique-specific deployments, explicitly setting both country_code=MZ and culture_code=pt-MZ is recommended for consistent response content.
Page content last updated . Spec covers 3 endpoints from betway.co.mz.
Related APIs in SportsSee all →
transfermarkt.com API
Search Transfermarkt for football players and retrieve detailed player profiles, transfer histories, market value timelines, performance stats, and club squad/club information.
opendota.com API
Access detailed Dota 2 match statistics, player performance metrics, hero win rates, and professional tournament data to analyze gameplay trends and competitive performance. Search for specific players, explore custom data queries through SQL, and retrieve comprehensive match histories to improve your understanding of the game.
nhl.com API
Access data from nhl.com.
pinnacle.com API
Access real-time and pre-event sports betting odds, matchups, and markets from Pinnacle. Retrieve data across all available sports and leagues, monitor live events with scores and live odds, and explore political and entertainment betting markets. Covers full market depth including spreads, totals, moneylines, props, and alternate lines.
fifa.com API
Track FIFA world rankings for men's and women's teams, browse tournament schedules and standings, access detailed match information with live timelines, and explore comprehensive player statistics and profiles. Stay updated with the latest football news and easily search across teams, players, and matches all in one place.
livescore.com API
Track live scores and detailed statistics across football, hockey, basketball, tennis, and cricket with the ability to filter by date, sport, and league. Access match summaries, team overviews, standings, fixtures, and results to stay updated on your favorite competitions and teams.
hltv.org API
Access Counter-Strike esports data from HLTV.org including match results, player and team statistics, team rankings, upcoming match schedules, tournament information, and fantasy league data.
transfermarkt.de API
Access data from transfermarkt.de.