v1
latestOpenAPI 3.0.02026-07-2466275257.1 KBwallet
Retrieve wallet by ID
Fetches the details of a specific wallet using its unique identifier, {id}. This endpoint returns information such as the wallet's name, balance, currency, and associated team, providing a comprehensive view of the wallet's current state.
get/v2/wallets/{id}
Path parameters
idstring required
Unique identifier for the wallet.
Response
The wallet object for requested id.
Example response
{
"wallet": {
"id": "wallet_12345ABC",
"namespaceId": "namespace_xyz987",
"teamId": "team_456DEF",
"name": "MainCompanyWallet",
"externalId": "ext_789GHI",
"currencyCode": "USD",
"creditLimit": "50000.00",
"dailyBudget": "1000.00",
"currentBalance": "20000.00",
"availableBalance": "15000.00",
"cappedAvailableBalance": "500.00"
}
}