API Reference
Wallets
Get Crypto Wallet [GET]

Get Crypto Wallet

https://sandboxapi.bitnob.co/api/v1/wallets/crypto-wallet/:coin (opens in a new tab)

Retrieve information about a specific cryptocurrency wallet for your company.


Path Parameters

ParameterTypeRequiredDescription
coinstringCryptocurrency type (enum)

Allowed values for coin: "trx", "bnb"

Request

Wallets/Get Crypto Wallet [GET]
curl --request GET \
   --url https://sandboxapi.bitnob.co/api/v1/wallets/crypto-wallet/trx \
   --header 'Authorization: Bearer API-KEY' \
   --header 'accept: application/json'

Responses

🟢 200 - Result example
{
"status": true,
"message": "Company wallets retrieved",
"data": {
  "currency": "trx",
  "usdAmount": "0.00",
  "amount": "0.00",
  "id": "5b1382fe-6fef-42b1-adb6-26a39b04bfc9"
}
}