Get wallet information

Retrieve the specified wallet's information associated with the account

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Retrieve details for a specific wallet by ID, including currency and balance.

Example Request

curl https://api.neutron.me/api/v2/account/YOUR_ACCOUNT_ID/wallet/WALLET_ID \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Example Response

{
  "data": {
    "id": "wal_btc_001",
    "ccy": "BTC",
    "amount": 0.01523,
    "availableBalance": 0.01500,
    "accountId": "ne01-abc123def456",
    "createdAt": "2025-01-15T10:00:00.000Z",
    "updatedAt": "2026-02-08T12:00:00.000Z"
  }
}

Response Fields

FieldTypeDescription
idstringUnique wallet identifier
ccystringCurrency code (BTC, USDT, VND, USD, etc.)
amountnumberTotal balance (includes reserved funds)
availableBalancenumberBalance available for transactions
accountIdstringAccount that owns this wallet
createdAtstringWallet creation timestamp
updatedAtstringLast update timestamp

Balance vs Available Balance

  • amount — Total balance, including funds reserved by pending transactions
  • availableBalance — What you can actually spend

If availableBalance is less than amount, you have pending transactions with reserved funds.

When to Use This vs List Wallets

EndpointUse when
List account walletsYou need all wallet balances (e.g., dashboard overview)
Get wallet info (this page)You need a specific wallet's balance (e.g., checking BTC before a send)

Access Control

  • The authenticated account must be the same as or the parent of the requested accountId
  • Invalid wallet ID returns 404 Not Found
  • Wrong account returns 403 Forbidden
Path Params
string
required

The unique identifier of the account to retrieve

string
required

The unique identifier of the wallet to retrieve

Headers
string
enum
Defaults to application/json

Generated from available response content types

Allowed:
Responses

Language
Credentials
Bearer
JWT
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json
text/plain