Introduction
- Welcome to Nomba
- Get API Keys
- Testing
Getting Started
- Dashboard Setup
- Authentication
- Definitions
Plugins and SDKs
Products
- Accounts
- Accept Payments
- Transfers
- Terminals
- Webhooks
- Transactions
- Airtime & Data Vending
- Cable & Bill Payments
- Cable TV
- Electricity
- Betting
Guides
API Patterns
Betting
Fetch Betting Providers
Get a list of the available plans from a provider.
curl --location GET \
--url https://api.nomba.com/v1/bill/betting/providers \
--header 'Authorization: Bearer <token>' \
--header 'accountId: <accountId>'
{
"code": "00",
"description": "SUCCESS",
"data": [
{
"lookup_id": "BET9JA",
"amount": "",
"name": "BET9JA",
"biller_id": "bet9ja",
"id": "bet9ja"
},
{
"lookup_id": "BET_1960BET",
"amount": "",
"name": "1960Bet",
"biller_id": "1960bet",
"id": "1960bet"
}
],
"message": "SUCCESS"
}
GET /v1/bill/betting/providers
Response body
Response code
Response description
Response message
curl --location GET \
--url https://api.nomba.com/v1/bill/betting/providers \
--header 'Authorization: Bearer <token>' \
--header 'accountId: <accountId>'
{
"code": "00",
"description": "SUCCESS",
"data": [
{
"lookup_id": "BET9JA",
"amount": "",
"name": "BET9JA",
"biller_id": "bet9ja",
"id": "bet9ja"
},
{
"lookup_id": "BET_1960BET",
"amount": "",
"name": "1960Bet",
"biller_id": "1960bet",
"id": "1960bet"
}
],
"message": "SUCCESS"
}
curl --location GET \
--url https://api.nomba.com/v1/bill/betting/providers \
--header 'Authorization: Bearer <token>' \
--header 'accountId: <accountId>'
{
"code": "00",
"description": "SUCCESS",
"data": [
{
"lookup_id": "BET9JA",
"amount": "",
"name": "BET9JA",
"biller_id": "bet9ja",
"id": "bet9ja"
},
{
"lookup_id": "BET_1960BET",
"amount": "",
"name": "1960Bet",
"biller_id": "1960bet",
"id": "1960bet"
}
],
"message": "SUCCESS"
}
Assistant
Responses are generated using AI and may contain mistakes.