Wallet details
Wallets
Get Wallet by ID
Retrieve full details of a single wallet, including current sub-balances, lifetime volumes, and configured payment instruments.
GET
Wallet details
Overview
GET /wallets/{id} returns full details of one wallet, including its current pay-in / pay-out sub-balances and a summary of activity.
When to use it
- Display a single wallet’s details in your dashboard.
- Verify a wallet’s balance before initiating a payout (also covered by
GET /payment/balance). - Reconcile lifetime volumes (
payin_amount,payout_amount) against your accounting.
Prerequisites
- The wallet must belong to your company.
Request
Headers
| Name | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Path parameters
| Name | Type | Description |
|---|---|---|
id | string | Wallet ID (UUID). |
Response
200 — Success
GET /wallets, with the addition of an embedded company summary. Note that lifetime volumes are exposed here as payInAmount / payOutAmount (camelCase, legacy) — they are the same numbers as payin_amount / payout_amount in the list view. See API Conventions → Field naming.
Error responses
| Status | Trigger |
|---|---|
404 | Wallet does not exist or belongs to another company. |
Code examples
cURL
Related
GET /wallets— list all wallets.GET /wallet/transactions/wallet/{walletId}— transactions for this wallet.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.