Skip to main content
GET
Wallet - Portfolio (V2)

Current Solana wallet portfolio and valuation.

  • This endpoint returns a current wallet portfolio snapshot with total asset value and paginated asset rows.
  • limit supports 1 to 100 items per request, and offset supports up to 10,000.
  • filter_value can be used to hide small positions below a minimum USD threshold.
  • flags can include additional portfolio behaviors such as include_low_liquidity.
  • sort_by is currently value-oriented and sort_type supports ascending or descending order.
  • This endpoint consumes 20 CU per request.
  • Show a wallet’s current portfolio value and holdings breakdown.
  • Power wallet overview pages, treasury dashboards, and portfolio snapshots.
  • Filter out dust positions and focus on the holdings that matter.
  • Rank or inspect one wallet’s top assets before drilling into per-token PnL.
  • Set x-chain=solana.
  • Pass the wallet address in wallet.
  • Use filter_value to suppress tiny positions.
  • Page through holdings with offset and limit.
  • Use this as the primary current-portfolio endpoint instead of stitching holdings and prices manually.
  • Apply filter_value in UI views where dust assets would otherwise drown out signal.
  • Cache per-wallet snapshots for a short interval rather than polling every interaction.
  • Solana only.

Authorizations

X-API-KEY
string
header
required

API key for authentication

Headers

x-chain
enum<string>
default:solana

Solana network only.

Available options:
solana

Query Parameters

wallet
string
required

The wallet of the account.

filter_value
number

Minimum value threshold; returns tokens with value ≥ this (optional, no default).

sort_by
enum<string>
default:value

Specify the sort field.

Available options:
value
flags
enum<string>[]

Modifiers that change result behavior (default: empty; excludes low-liquidity tokens < $100, use include_low_liquidity to include them).

Available options:
include_low_liquidity
Example:
sort_type
enum<string>
default:desc
required

Specify the sort order.

Available options:
desc,
asc
limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0

Make sure offset <= 10000

Required range: 0 <= x <= 10000

Response

JSON object containing portfolio of an address

success
boolean
required

Whether the request succeeded.

data
object
required
pagination
object