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.

Get Wallet

Retrieve a single wallet by ID. GET /wallets/{id}  ·  🔒 Auth required

Path parameters

ParameterDescription
idWallet ID, e.g. wal_01hy2c4n8j5r3d6e

Response 200 OK

{
  "id": "wal_01hy2c4n8j5r3d6e",
  "name": "Main BTC",
  "asset": "BTC",
  "balance": 500000000,
  "active": true,
  "created_at": "2024-09-15T10:30:00Z",
  "updated_at": "2024-11-01T09:00:00Z"
}

Errors

CodeHTTPCause
NOT_FOUND404Wallet not found

Example

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