---
title: "Wallet Portfolio"
method: POST
path: "/wallet/portfolio"
tags: ["wallet"]
---

# Wallet Portfolio

`POST /wallet/portfolio`

Returns the wallet's tokens with balances and USD values. Reusable beyond the pay-with-wallet flow (swap source picker, deposit balance display, etc.). Hits BalanceService caches; force_refresh bypasses L1+L2.

## Headers

- `X-API-KEY` string, required

## Request body

- WalletPortfolioRequest
  - `wallet_address` string, required
  - `chain_type` 'EVM' | 'SOL' | 'SUI' | 'UTXO', required
  - `chain_ids` ChainID[]
  - `min_balance_usd` number, nullable
  - `force_refresh` boolean

## Response `200`

Portfolio scan succeeded

- WalletPortfolioResponse
  - `wallet_address` string, required
  - `chain_type` 'EVM' | 'SOL' | 'SUI' | 'UTXO', required
  - `scanned_at` string, date-time, required
  - `expires_at` string, date-time, required
  - `currencies` WalletPortfolioCurrency[], required
    - `chain_id` 1 | 10 | 56 | 137 | 8453 | 42161 | 20000000000001 | 30000000000001 | 30000000000002, required
    - `address` string, nullable
    - `symbol` string, required
    - `decimals` integer, required
    - `balance` CurrencyAmount, required
      - `ui_amount` number, required — Approximate numeric amount. Do not use for payment construction; use raw_amount for exact amounts and ui_amount_display for display.
      - `ui_amount_display` string, required
      - `raw_amount` string, required — A big integer represented as a string to preserve precision
      - `value_usd` number, required
    - `price_usd` number, nullable
    - `logo_uri` string, nullable
    - `chain_logo_uri` string, nullable

## Other responses

- `401` — Unauthorized
- `422` — Invalid request body
- `429` — Rate-limit bucket exceeded; Retry-After header set

---

[API](https://skmtc.net/coinvoyage/apis/coinvoyage-api.md) · [All operations](https://skmtc.net/coinvoyage/apis/coinvoyage-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/coinvoyage/coinvoyage-api/revisions/29e628200554/schema)
