---
title: "Get Vault Assets"
method: GET
path: "/api/v1/vaults/{id}/assets"
tags: ["Vaults"]
---

# Get Vault Assets

`GET /api/v1/vaults/{id}/assets`

Get a list of all assets in a vault.

## Path parameters

- `id` string, uuid, required — ID of the vault to retrieve.

## Query parameters

- `page` integer — The page number to fetch.
- `size` integer — The number of items per page.
- `skip_count` boolean — Whether to skip counting the total number of items.
- `chains` string[]
- `asset_ids` string[]
- `is_hidden` boolean
- `search` string
- `sort_by` OwnedAssetsSortableFields[]

## Response `200`

Successful Response

- ListOwnedAssetsResponse
  - `total` integer, required
  - `page` integer, required
  - `size` integer, required
  - `owned_assets` OwnedAsset[], required
    - `priced_asset` PricedAsset, required
      - `type` 'asset_price', required
      - `asset_info` AssetInfo, required
        - `id` string, uuid, required — The asset ID.
        - `asset_identifier` union, required
          - AptosAssetIdentifier
            - `type` 'aptos', required — Aptos asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedAptosChain, required
              - …
          - ArchAssetIdentifier
            - `type` 'arch', required — Arch asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedArchChain, required
              - …
          - CantonAssetIdentifier
            - `type` 'canton', required — Canton asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedCantonChain, required
              - …
          - CosmosAssetIdentifier
            - `type` 'cosmos', required — Cosmos asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedCosmosChain, required
              - …
          - EvmAssetIdentifier
            - `type` 'evm', required — Asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedEvmChain, required
              - …
          - ExchangeAssetIdentifier
            - `type` 'exchange', required — Asset identifier type.
            - `exchange_type` 'binance' | 'bybit' | 'coinbase_international' | 'coinbase_us' | 'okx' | 'kraken', required
            - `asset_symbol` string, required — The symbol of the asset on the exchange.
            - `chain` EnrichedExchangeChain, required
              - …
          - SolanaAssetIdentifier
            - `type` 'solana', required — Solana asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedSolanaChain, required
              - …
          - StacksAssetIdentifier
            - `type` 'stacks', required — Stacks asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedStacksChain, required
              - …
          - StellarAssetIdentifier
            - `type` 'stellar', required — Stellar asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedStellarChain, required
              - …
          - StarknetAssetIdentifier
            - `type` 'starknet', required — Starknet asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedStarknetChain, required
              - …
          - SuiAssetIdentifier
            - `type` 'sui', required — Sui asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedSuiChain, required
              - …
          - TonAssetIdentifier
            - `type` 'ton', required — TON asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedTonChain, required
              - …
          - TronAssetIdentifier
            - `type` 'tron', required — TRON asset identifier type.
            - `details` union, required
              - …
            - `chain` EnrichedTronChain, required
              - …
          - UtxoAssetIdentifier
            - `type` 'utxo', required — Utxo asset identifier type.
            - `details` UtxoNativeAssetIdentifierRequest, required
              - …
            - `chain` EnrichedUtxoChain, required
              - …
        - `name` string, required — The name of the asset.
        - `symbol` string, required — The symbol (ticker) of the asset.
        - `decimals` integer, required
        - `verified` boolean, required — `True` if this asset is verified by Fordefi, `False` otherwise.
        - `metadata_uri` string — The URI of the asset metadata.
        - `is_spam` boolean, required — `True` if this asset is spam, `False` otherwise.
        - `logo_url` string, uri — The URL of the asset logo.
        - `explorer_url` string, uri — The URL of a blockchain explorer that provides real-time information about the asset.
        - `issuer_name` string — Best-effort display name of the issuer
      - `price` Price — Price represents a price in a given FiatCurrency.
        - `price` string, required — The price in the given fiat currency.
        - `price_float` string, required — The absolute price in the given fiat currency. When is_negative is true the asset's value is the negative of this (e.g. a debt token).
        - `is_negative` boolean — Whether the asset's value is negative (e.g. a debt token). price_float holds the absolute value.
        - `fiat_currency` FiatCurrency, required
          - `currency_symbol` 'usd', required — FiatCurrencySymbol
          - `decimals` integer, required — The number of decimals in the fiat currency.
    - `balances` Balances, required — The cryptocurrency balances of the asset.
      - `total_mined` string, required — The value of all mined assets.
      - `total_pending_incoming` string, required — The value of all pending incoming assets.
      - `available_mined` string, required — The value of all available mined assets. Equals to total mined balance minus frozen mined.
      - `available_pending_incoming` string, required — The value of all available pending incoming assets. Equals to total pending incoming minus frozen pending incoming.
      - `frozen_mined` string, required — The value of all mined frozen assets.
      - `frozen_pending_incoming` string, required — The value of all pending incoming frozen assets.
      - `trustline_limit` string — The trustline limit for Stellar assets. Nil for non-Stellar assets or assets without trustlines.
      - `is_auto_approved` boolean — (Canton) True if incoming transfers of this asset are auto-accepted via a pre-approval.
    - `balance` string

## Other responses

- `400` — Bad Request
- `401` — Unauthorized User
- `403` — Forbidden User
- `404` — Not Found
- `408` — Request Timeout
- `422` — Validation Error
- `429` — Rate Limit Exceeded
- `500` — Unexpected Error

---

[API](https://skmtc.net/fordefi/apis/fordefi-api.md) · [All operations](https://skmtc.net/fordefi/apis/fordefi-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fordefi/fordefi-api/versions/8014fd69ea17/schema)
