Pave Bank
Digital Asset Accounts

Get Digital Asset Account

Viewer Access

Retrieves the digital asset account for the given account ID, including live balances, wallet address and status

GET
/v1/segregated-wallets/{accountID}

Authorization

AuthorizationRequiredBearer <token>

Enter your token in the format: Bearer {token}

In: header

Path Parameters

accountIDRequiredstring

The digital asset account to retrieve.

Response Body

Success response

idRequiredstring

The account ID of the digital asset account.

nameRequiredstring

The account name.

balance_totalRequiredstring

The full balance held in the wallet, including any frozen amount, in minor units of the asset.

balance_availableRequiredstring

The balance available to transfer out, excluding any frozen amount, in minor units of the asset.

balance_frozenRequiredstring

The portion of the balance that is held and cannot be spent, in minor units of the asset.

account_typeRequiredstring
assetRequiredstring

The digital asset held by the wallet (e.g. ETHEREUM-USDC).

Value in: "ETHEREUM-USDC" | "ETHEREUM-USDT" | "ETHEREUM-ETH" | "ETHEREUM-XAUT" | "ETHEREUM-USAT" | "POLYGON-USDC" | "POLYGON-USDT" | "POLYGON-MATIC" | "TRON-USDT" | "TRON-TRX" | "BITCOIN-BTC" | "SOLANA-USDC" | "SOLANA-USDT" | "SOLANA-SOL" | "RIPPLE-XRP" | "HYPERLIQUID-HYPE" | "BSC-BNB" | "BSC-USDT" | "BSC-USDC" | "CANTON-CC"
blockchainRequiredstring

The blockchain network the wallet operates on.

Value in: "ETHEREUM" | "POLYGON" | "BITCOIN" | "TRON" | "SOLANA" | "RIPPLE" | "HYPERLIQUID" | "BSC" | "CANTON"
wallet_addressRequiredstring

The wallet's deposit address on the blockchain. Empty while the wallet is still being provisioned.

statusRequiredstring

Status of the account.

Value in: "OPEN" | "CLOSED" | "BLOCKED" | "PENDING" | "PENDING_REVIEW"
created_atRequiredstring
Format: date-time
curl -X GET "https://developer-api-staging.pavebank.dev/v1/segregated-wallets/string" \
  -H "Authorization: Bearer <token>"
{
  "id": "string",
  "name": "string",
  "balance_total": "string",
  "balance_available": "string",
  "balance_frozen": "string",
  "account_type": "string",
  "asset": "ETHEREUM-USDC",
  "blockchain": "ETHEREUM",
  "wallet_address": "string",
  "status": "OPEN",
  "created_at": "2019-08-24T14:15:22Z"
}