Skip to main content
GET
/
api
/
wallets
List wallets
curl --request GET \
  --url https://api.sandbox.bitwage.com/api/wallets \
  --header 'Authorization: Basic <encoded-value>'
{
  "wallets": [
    {
      "id": "custodial_account_123",
      "balance": "<string>",
      "currency": "<string>",
      "is_default": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.bitwage.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Include your access token as: Authorization: Basic <ACCESS_TOKEN>

Query Parameters

company_id
string
required

Company ID to retrieve wallets for.

currency
string

Optional wallet currency filter, for example USD.

Response

200 - application/json

Wallets returned.

wallets
object[]