Skip to main content
GET
/
wallets
List all wallets
curl --request GET \
  --url http://localhost:4000/v1/wallets \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "message": "<string>",
  "statusCode": 123,
  "timestamp": "<string>",
  "data": {
    "items": [
      {
        "walletId": "wallet-abc123def456",
        "walletName": "My Treasury Wallet",
        "addresses": [
          {
            "address": "0x123abc456def789012345678901234567890abcd",
            "path": "m/44'/60'/0'/0/0",
            "addressFormat": "ADDRESS_FORMAT_ETHEREUM"
          }
        ],
        "subOrganizationId": "suborg-xyz789"
      }
    ],
    "nextCursor": "cursor-abc123"
  },
  "path": "<string>"
}

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Query Parameters

cursor
string

Pagination cursor for the next page

Example:

"cursor-abc123"

limit
number

Maximum number of wallets to return (default: 20)

Example:

20

integratorId
string

Integrator ID (required for ADMIN scope)

Example:

"uuid-integrator-id"

Response

success
boolean
required
message
string
required
statusCode
number
required
timestamp
string
required
data
object
path
string