For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Balance

Retrieve the cNGN balance for your merchant account.

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

Response Fields (Decrypted)

Field
Type
Description

asset_type

string

The type of asset (e.g., credit_alphanum4)

asset_code

string

The asset code (e.g., CNGN)

balance

string

The available balance

Example Request

Last updated