Discover/betpawa.com.gh API
live

betpawa.com.gh APIbetpawa.com.gh

Access BetPawa Ghana sports odds, live events, markets, and leagues via 6 structured endpoints. Football, basketball, tennis, and eFootball data.

Endpoints
6
Updated
14d ago
Try it
Number of events to skip for pagination.
Number of events to return.
Sport category ID. Known values: '2' (Football), '3' (Basketball), '452' (Tennis), '101' (
api.parse.bot/scraper/1ea07ad7-b11e-44bb-adbc-91a0416eca1d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1ea07ad7-b11e-44bb-adbc-91a0416eca1d/get_upcoming_events?sport_id=2' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Get upcoming sports events with odds for a given sport category. Returns paginated results including event names, participants, start times, 1X2 odds, and market counts.

Input
ParamTypeDescription
skipintegerNumber of events to skip for pagination.
takeintegerNumber of events to return.
sport_idstringSport category ID. Known values: '2' (Football), '3' (Basketball), '452' (Tennis), '101' (eFootball).
Response
{
  "type": "object",
  "fields": {
    "responses": "array of query response objects, each containing a request echo and a responses array of event objects with id, name, participants, startTime, markets, totalMarketCount, category, region, competition"
  },
  "sample": {
    "data": {
      "responses": [
        {
          "request": {
            "skip": 0,
            "take": 20,
            "view": {
              "marketTypes": [
                "3743"
              ]
            },
            "query": {
              "zones": {},
              "hasOdds": true,
              "eventType": "UPCOMING",
              "categories": [
                "2"
              ]
            }
          },
          "responses": [
            {
              "id": "34839573",
              "name": "Jiangsu LFC Women - Changchun Jiuyin Loans Women",
              "region": {
                "id": "150",
                "name": "China"
              },
              "markets": [
                {
                  "row": [
                    {
                      "prices": [
                        {
                          "name": "1",
                          "price": 1.68
                        },
                        {
                          "name": "X",
                          "price": 3.35
                        },
                        {
                          "name": "2",
                          "price": 4.9
                        }
                      ]
                    }
                  ],
                  "marketType": {
                    "id": "3743",
                    "name": "1X2 - FT"
                  }
                }
              ],
              "category": {
                "id": "2",
                "name": "Football"
              },
              "startTime": "2026-05-03T08:00:00Z",
              "competition": {
                "id": "13005",
                "name": "Chinese Super League, Women"
              },
              "participants": [
                {
                  "id": "667975",
                  "name": "Jiangsu LFC Women",
                  "position": 1
                },
                {
                  "id": "667681",
                  "name": "Changchun Jiuyin Loans Women",
                  "position": 2
                }
              ],
              "totalMarketCount": 36
            }
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the betpawa.com.gh API

The BetPawa Ghana API covers 6 endpoints that expose upcoming events, live match data, popular fixtures, full market odds, sport categories, and league listings from BetPawa's Ghana sportsbook. The get_event_detail endpoint alone returns all available betting markets for a single event — including 1X2, Double Chance, Both Teams To Score, and Over/Under — along with region, competition, and participant data structured for direct use.

Event Discovery and Odds

The get_upcoming_events endpoint accepts a sport_id parameter to filter by Football (2), Basketball (3), Tennis (452), or eFootball (101), with skip and take integers for pagination. Responses include event id, name, participant arrays, start times, 1X2 odds, and a totalMarketCount per event. get_popular_events surfaces up to 20 featured Football fixtures sorted by ascending start time, each including a popularity score alongside odds and market counts. These two endpoints together serve as the primary discovery layer for event IDs used downstream.

Live and Detailed Market Data

get_live_events requires no parameters and returns currently in-progress events across all four sports. Each event includes real-time results (scores), the current period, participant data, and available market odds — making it suitable for dashboards that need to reflect match state. For full market depth on any event, get_event_detail accepts a required event_id and returns the complete market list: each market object carries a marketType and a row containing price/odds entries. The response also includes region, competition, category, startTime (ISO 8601 UTC), and participants with position labels.

Platform Configuration and League Structure

get_sports_categories returns platform-level metadata: a brand object (currency, language, country), sportsbook category array with sport IDs and display priorities, betting limits covering both real and virtual markets (maxBetWin, minStake), and bonusConfigurations. This endpoint is useful for dynamically enumerating available sport IDs rather than hardcoding them. get_leagues_by_sport accepts the same sport_id values and returns competitions grouped by region, with per-competition event counts (live and upcoming) and a weekly schedule breakdown — useful for building league navigation or identifying which competitions have active fixtures.

Common use cases
  • Odds comparison tool tracking 1X2 and Over/Under prices across Football leagues on BetPawa Ghana
  • Live match dashboard consuming get_live_events to display real-time scores and current period for in-play betting
  • League browser using get_leagues_by_sport to list active competitions with live and upcoming event counts
  • Event aggregator pulling get_upcoming_events for multiple sport IDs to consolidate fixture schedules
  • Betting analytics pipeline using get_event_detail to collect full market odds snapshots per event ID
  • Platform configuration reader using get_sports_categories to extract betting limits and available sport categories dynamically
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 BetPawa Ghana have an official public developer API?+
BetPawa does not publish a public developer API or documentation for third-party data access. This Parse API provides structured access to the event, odds, and market data available on betpawa.com.gh.
What does `get_event_detail` return beyond basic odds?+
It returns every available market for the event — types like 1X2, Double Chance, Both Teams To Score, and Over/Under — each with full price rows. It also includes the region, competition, category, ISO 8601 startTime, participants with position labels, and totalMarketCount. Pass an event_id obtained from get_upcoming_events, get_live_events, or get_popular_events.
Does the API cover historical match results or settled bet outcomes?+
Not currently. The API covers upcoming events, live in-progress events, popular fixtures, and market odds — all pre-settlement data. Historical results and settled markets are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting historical or results data if BetPawa exposes that content.
Is `get_popular_events` limited to Football, and can it be filtered by league?+
Yes, get_popular_events returns only Football fixtures and does not accept a league or competition filter — it returns up to 20 events ranked by popularity score. get_leagues_by_sport can be used to identify specific competitions, and get_upcoming_events with sport_id=2 supports pagination for broader Football fixture discovery. You can fork this API on Parse and revise it to add league-level filtering for popular events.
How does pagination work in `get_upcoming_events`?+
Pass skip (number of events to skip) and take (number of events to return) as integer query parameters alongside sport_id. To retrieve the next page, increment skip by the value of take. The response wraps results in a responses array, each item containing a request echo and the matched event objects.
Page content last updated . Spec covers 6 endpoints from betpawa.com.gh.
Related APIs in SportsSee all →
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
maxpreps.com API
Access high school sports data from MaxPreps. Search for schools, retrieve team rosters and schedules, look up athlete profiles, and browse national or state rankings across all sports.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
130point.com API
Search for sold trading cards across eBay, Goldin, Heritage Auctions, Pristine Auction, MySlabs, and Fanatics Collect to find historical prices, sale dates, and marketplace information all in one place. Get comprehensive sales data to research card values and track market trends across multiple platforms instantly.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.
whoscored.com API
Search for players and teams, then dive deep into their performance metrics, match statistics, and detailed passing data to analyze football games and player abilities. Get comprehensive insights on team performance, individual player stats, and play-by-play event information to power your football analysis and decision-making.