Skip to main content
GET
/
business
/
vas
/
internet
/
data
/
fetch-providers
List data networks 🔒
curl --request GET \
  --url https://api-staging.usenumero.com/numeroaccount/api/v1/business/vas/internet/data/fetch-providers \
  --header 'X-Numero-Api-Key: <api-key>' \
  --header 'X-Numero-Signature: <api-key>'
{
  "status": true,
  "message": "Successful",
  "code": "200",
  "version": "v1",
  "reference": "N20260616120000",
  "data": {
    "providers": [
      {
        "code": "MTNDATA",
        "name": "MTN Data"
      },
      {
        "code": "GLODATA",
        "name": "Glo Data"
      },
      {
        "code": "AIRTELDATA",
        "name": "Airtel Data"
      }
    ]
  },
  "error": null
}

Authorizations

X-Numero-Api-Key
string
header
required

Your business API key (live_key_...). Issued on approval; managed in Dashboard → Settings → Developer.

X-Numero-Signature
string
header
required

Base64(HMAC-SHA256(secretApiKey, input)) over the raw request body (POST) or canonicalized query string (signed GET). Also send X-Numero-Signature-Version: v2. Required on money-movement / state-changing endpoints (marked 🔒).

Response

Successful response

Canonical response envelope for the public surface. data on success, error on failure.

data
any
required

Endpoint payload on success (object or array); null on failure.

error
object
required
meta
object
required