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"
}