Developer Platform

API & Developer Documentation

Integrate high-speed Bulk SMS, USSD menus, Airtime, Data, and Utility disbursements into your product using our RESTful APIs.

Generate API Keys
Quickstart

Overview & Authentication

All requests to CBI API are served over HTTPS with TLS encryption. Authenticate requests using your Bearer JWT Token or API Key in the request headers.

GET/api/v1/auth/me
Verify your API credentials and retrieve current account profile.
Required Headers
Authorization:Bearer <YOUR_ACCESS_TOKEN>
Content-Type:application/json
curl -X GET "https://backend.cbivas.com/api/v1/auth/me" \
  -H "Authorization: Bearer <YOUR_ACCESS_TOKEN>" \
  -H "Content-Type: application/json"
Sample Response (200 OK)
{
  "id": "usr_94b1f8a2",
  "email": "developer@company.ng",
  "account_type": "corporate",
  "wallet_balance": 50000,
  "currency": "NGN",
  "status": "active"
}