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

Wallet Balances

All wallet Balances

Shows the amount of money remaining in the merchant account wallets

Live

GET https://kitegateway.com/v1/data/wallets/balances

Sandbox

GET https://sandbox.kitegateway.com/v1/data/wallets/balances

Request Headers

Header

Value

Required

Content-Type

application/json

YES

Accept

application/json

YES

Authorization

JWT ***

YES

Request Body

Parameter Name

Type

Description

currency

string

The wallet currency

balance

double

The wallet balance

{
    "code": 200,
    "status": "success",
    "message": "Request completed successfully.",
    "data": [
        {
            "currency": "UGX",
            "balance": 1250000
        },
        {
            "currency": "USD",
            "balance": 7213
        }
    ]
}

Single wallet balance

Shows the amount of money remaining in a specific wallet currency

Live

GET https://kitegateway.com/v1/data/wallets/:currency/balance

Sandbox

GET https://sandbox.kitegateway.com/v1/data/wallets/:currency/balance

Request Headers

Header

Value

Required

Content-Type

application/json

YES

Accept

application/json

YES

Authorization

JWT ***

YES

Request Body

Parameter Name

Type

Description

currency

string

The wallet currency

balance

double

The wallet balance

Last updated