Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

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

List Wallets

Return all wallets belonging to the authenticated user. GET /wallets  ·  🔒 Auth required

Response 200 OK

{
  "data": [
    {
      "id": "wal_01hy2c4n8j5r3d6e",
      "name": "Main BTC",
      "asset": "BTC",
      "balance": 500000000,
      "active": true,
      "created_at": "2024-09-15T10:30:00Z"
    },
    {
      "id": "wal_01hy2c4n8j5r3xyz",
      "name": "ETH Savings",
      "asset": "ETH",
      "balance": 3800000000000000000,
      "active": true,
      "created_at": "2024-10-01T12:00:00Z"
    }
  ],
  "meta": {
    "total": 2
  }
}
Balances are in the smallest unit of each asset (satoshis for BTC, wei for ETH, lamports for SOL, etc.).

Example

curl https://api.sertexity.com/v1/wallets \
  -H "Authorization: Bearer <access_token>"