curl --location GET \
--url https://api.nomba.com/v1/bill/betting/lookup \
--header 'accountId: <accountId>' \
--header 'Authorization: <token>'
{
    "code": "00",
    "description": "SUCCESS",
    "data": "John Doe",
    "message": "SUCCESS"
}

GET /v1/bill/betting/lookup

Query parameters

providerId
string

The code name of the betting provider as gotten when the list of betting providers is fetched e.g. bet9ja

customerId
string

The unique identifier of the customer on the provider’s platform

Response body

code
string
required

Response code

description
string
required

Response description

data
string
required

Data containing customer’s name if present

message
string
required

Response message

curl --location GET \
--url https://api.nomba.com/v1/bill/betting/lookup \
--header 'accountId: <accountId>' \
--header 'Authorization: <token>'
{
    "code": "00",
    "description": "SUCCESS",
    "data": "John Doe",
    "message": "SUCCESS"
}