Skip to main content
GET
/
api
/
v3
/
wallet
/
crypto
/
{id}
Get Integrator Crypto Wallet by Wallet ID
curl --request GET \
  --url https://sandbox-api.kotanipay.com/api/v3/wallet/crypto/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Crypto Wallet has been successfully retrieved.",
  "data": {
    "name": "My Wallet",
    "balance": 1000,
    "type": "eg crypto or fiat",
    "coin": "eg CUSD or USDC or USDT",
    "id": "f053188c-d924-4423-bbba-871eda0b1cd9",
    "privateAddress": "0x1234567890",
    "publicAddress": "0x1234567890",
    "address": "0x1234567890",
    "customAddress": "0x1234567890",
    "chain": "eg CELO or ETHEREUM or AVALANCHE or POLYGON",
    "tokenBalance": [
      {
        "token": "USDT",
        "balance": "1000",
        "fiatValue": "1000"
      }
    ],
    "fiatBalance": 1000,
    "fiatCurrency": "USD"
  }
}
Retrieve details of a specific crypto wallet by its ID, including supported tokens and current balances.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

success
boolean
Example:

true

message
string
Example:

"Crypto Wallet has been successfully retrieved."

data
object