NetConnect API
Catalog

List Operators

Read all available operators for partner purchases.

Endpoint

GET /api/v1/operators

What it does

Returns the active operator list used by the storefront purchase flows.

Response

Returns an array of operator objects.

{
  "success": true,
  "data": [
    {
      "_id": "kd75tyb8qcfhwse13d03gprk0n7yq19p",
      "code": "atl",
      "name": "AT",
      "status": "Active"
    },
    {
      "_id": "kd7ff6sssan1v3d00dbbttwaa57yp27d",
      "code": "mtn",
      "name": "MTN",
      "status": "Active"
    },
    {
      "_id": "kd7d0mfvw44cqq6k8008h9qend7yqae6",
      "code": "vod",
      "name": "Telecel",
      "status": "Active"
    }
  ]
}

Response fields

Each operator contains:

FieldTypeNotes
_idstringOperator identifier
codestringInternal operator code (e.g. atl, mtn, vod)
namestringOperator name (e.g. AT, MTN, Telecel)
statusstringActive or Inactive

Sample request

curl -X GET "https://api.netconnectgh.online/api/v1/operators" \
  -H "X-API-KEY: netconnect_live_your_secret_here" \
  -H "Content-Type: application/json"

On this page