v1

latestOpenAPI 3.0.02026-07-26117198177.4 KB
Accounts

Get account by address

Returns a single account matching the given address for the caller workspace.

get/v2/accounts/{id}

Path parameters

idstring required

Response

idstring required
namestring required
type'eoa' | 'multisig' | 'contract' | 'custodian' | 'exchange' | 'bank' | 'defi' required
networkstring
addressstring
providerstring required
status'active' | 'updating' required
balances_usdstring nullable

Total USD value across all of the account balances. null when no asset has a known price.

balances_updated_atstring
notesstring
rolestring

Example response

{
  "id": "bje5mmbqxjvwjaf7oxwpyxntxdyspzZyt4vwennw5rug",
  "name": "Treasury wallet",
  "type": "eoa",
  "network": "solana",
  "address": "BJE5MMbqXjVwjAF7oxwPYXnTXDyspzZyt4vwenNw5ruG",
  "provider": "ledger, kraken, wallet, ...",
  "groups": [
    {
      "id": "uuid-1",
      "name": "Finance"
    }
  ],
  "status": "active",
  "balances": [
    {
      "asset": "USDC",
      "amount": "100.50",
      "usd": "100.50",
      "updated_at": "2024-01-01T00:00:00.000Z"
    }
  ],
  "balances_usd": "1234.56",
  "balances_updated_at": "2024-01-01T00:00:00.000Z",
  "details": {
    "network": "solana",
    "address": "BJE5MMbqXjVwjAF7oxwPYXnTXDyspzZyt4vwenNw5ruG"
  },
  "notes": "Primary treasury wallet",
  "role": "Treasury"
}