Retrieve the cNGN balance for your merchant account.
GET https://api.cngn.co/v1/api/balance
GET
https://api.cngn.co/v1/api/balance
Returns the asset balances associated with your merchant account.
{ "status": 200, "message": "Balance fetched successfully", "data": [ { "asset_type": "credit_alphanum4", "asset_code": "CNGN", "balance": "150000.00" } ] }
{ "status": 400, "message": "Invalid api key" }
asset_type
string
The type of asset (e.g., credit_alphanum4)
credit_alphanum4
asset_code
The asset code (e.g., CNGN)
CNGN
balance
The available balance
Last updated 3 months ago
curl -X GET https://api.cngn.co/v1/api/balance \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY"