melbet.ng APImelbet.ng ↗
Fetch sports, tournaments, and betting odds from Melbet Nigeria via 3 endpoints. Access pre-match and live markets including Result, Double Chance, Total, and Handicap.
curl -X GET 'https://api.parse.bot/scraper/74728b97-3711-47f2-b1e3-dc54b7cf9ac0/list_sports' \ -H 'X-API-Key: $PARSE_API_KEY'
List all available sports with their event counts. Supports both pre-match and live sports listings.
| Param | Type | Description |
|---|---|---|
| sport_type | string | Type of sports listing. Accepts exactly one of: prematch, live. |
{
"type": "object",
"fields": {
"total": "integer",
"sports": "array of sport objects with id, name, name_english, event_count, live_count, sort_id"
},
"sample": {
"total": 39,
"sports": [
{
"id": 1,
"name": "Football",
"sort_id": 1,
"live_count": 0,
"event_count": 726,
"name_english": "Football"
},
{
"id": 4,
"name": "Basketball",
"sort_id": 3,
"live_count": 0,
"event_count": 66,
"name_english": "Basketball"
}
]
}
}About the melbet.ng API
The Melbet Nigeria API provides structured access to sports betting data across 3 endpoints, covering sports listings, tournament discovery, and per-event odds markets. The get_event_odds endpoint returns match details with odds for Result (W1/X/W2), Double Chance, Total (Over/Under), and Handicap markets for any tournament retrieved from list_tournaments. The API covers both pre-match and live event data as available on melbet.ng.
Sports and Tournament Discovery
The list_sports endpoint returns all sports available on Melbet Nigeria, including each sport's id, name, name_english, event_count, live_count, and sort_id. The optional sport_type parameter accepts either prematch or live, letting you filter the listing to the relevant segment. The total count field gives a quick summary of how many sports are active at query time.
The list_tournaments endpoint accepts a sport_id — for example 1 for Football or 4 for Basketball — and returns every tournament or championship available for that sport. Each tournament object includes an id, name, and event_count. These tournament IDs are the required input for retrieving actual odds data.
Event Odds Detail
The get_event_odds endpoint accepts a tournament_id (such as 5659 for the UEFA Super Cup or 4584 for the UEFA Champions League) and returns an events array alongside tournament_name, region, sport, and total_events. Each event object carries match info and odds covering four markets: Result (W1/X/W2 for win/draw/loss), Double Chance, Total (Over/Under lines), and Handicap. This gives enough structure to compare odds across events within a single tournament or to track specific market lines over time.
Coverage Notes
Data reflects what is currently active on melbet.ng for the Nigerian market. Live event availability depends on what matches are in progress at query time, so live_count values on list_sports will vary. Tournament and event availability is sport-dependent — not every sport will have the same breadth of competitions listed.
- Monitor odds movements for W1/X/W2 markets across UEFA Champions League fixtures using get_event_odds
- Build a sports aggregator that lists live event counts per sport using list_sports with sport_type=live
- Compare Handicap and Total (Over/Under) lines across tournaments for a given sport
- Identify which tournaments have the most active events using the event_count field from list_tournaments
- Track pre-match odds for Nigerian football leagues by filtering list_sports with sport_type=prematch
- Populate a tournament selector UI by querying list_tournaments with a sport_id from list_sports results
- Alert on Double Chance market availability for specific matches using get_event_odds event objects
| 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.