Skip to main content
GET
/
api
/
v3
/
wallet
/
fiat
/
currency
/
{currency}
Get Integrator Fiat Wallet by Currency (optionally by Country)
curl --request GET \
  --url https://sandbox-api.kotanipay.com/api/v3/wallet/fiat/currency/{currency} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "The wallet has been successfully retrieved.",
  "data": {
    "name": "My Wallet",
    "type": "eg crypto or fiat",
    "currency": "eg NGN or GHS or KES",
    "integrator": "4440cb6a-f7c7-11ed-b67e-0242ac120002",
    "id": "f053188c-d924-4423-bbba-871eda0b1cd9",
    "balance": 1000,
    "deposit_balance": 1000,
    "country": "GH or GHA for Ghana",
    "status": "eg active or inactive"
  }
}
Retrieve a fiat wallet by its currency code (e.g., KES, UGX, USD).

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

currency
string
required

Query Parameters

country
string
required

Response

success
boolean
Example:

true

message
string
Example:

"The wallet has been successfully retrieved."

data
object