---
title: "Get user portfolio"
method: GET
path: "/api/v1/users/{address}/wallet/balances"
tags: ["User"]
---

# Get user portfolio

`GET /api/v1/users/{address}/wallet/balances`

## Path parameters

- `address` string, required — The user account address

## Query parameters

- `with_text` boolean — Include text variation fields
- `with_value` boolean — Calculate and include USD values for amounts, where applicable

## Response `200`

Success response

- UserWalletPortfolioObjResponse
  - `data` UserWalletPortfolio, required
    - `balances` WalletBalance[], required — Array of each wallet balance
      - `asset` AssetSpec, required — Provides a unique identifier for an asset for use throughout the Neptune API. IDs are unique across asset domains (contract tokens, native denoms, etc)
        - `id` string, required
        - `group` union, required
          - 'native'
          - 'token'
        - `group_key` string, required
      - `values` union, required
        - object
          - `kind` 'known', required
          - `asset_info` AssetInfo, required — Asset identifiers with associated metadata
            - `asset` AssetSpec, required — Provides a unique identifier for an asset for use throughout the Neptune API. IDs are unique across asset domains (contract tokens, native denoms, etc)
              - …
            - `metadata` AssetMetadata, required — Additional metadata for assets
              - …
            - `classification` union, required — The asset's classification metadata. Assets are classfied to provide context on their usage throughout the Neptune API (e.g. regular assets, neptune receipt tokens, LSTs, etc.) Each asset belongs to only a single classification type. This object contains metadata pertaining to the given classification. While some fields may be common among the distinct classifcations, each classification is distinct and subject to independent change.
              - …
          - `amount` string, required — Wallet balance in native denom.
          - `amount_scaled` string, required — Amount scaled to the asset's standard unit / decimal places.
          - `extra` object, required
            - `text` object, nullable, required — Human-readable field variants. Will not be null when query param `with_text` is `true`.
              - …
            - `value` object, nullable, required — USD values for the corresponding amounts above. Will not be null when query param `with_value` is `true`. ### Note This variant group contains an additional `price` field (set to the number used in value calculation). The embedded text group will contain the text variant if `with_text` was specified as well.
              - …
        - object
          - `kind` 'unknown', required
          - `amount` string, required — Wallet balance in native denom.
    - `total_value` string, nullable, required — Sum value in USD. Guaranteed null if value calculation is disabled / guaranteed non-null if calculation is enabled. **NOTE:** this only accounts for assets which are internally known & tracked. See the `/assets` endpoint for a list of supported assets.
    - `extra` object, required
      - `text` object, nullable, required — Human-readable field variants. Will not be null when query param `with_text` is `true`.
        - `total_value` string, required
  - `error` unknown, required
  - `status` integer, required — HTTP status. Successful responses are guaranteed to be < `400`. Conversely, error responses are guaranteed to be >= `400`.
  - `status_text` string, required — HTTP status text

## Other responses

- `500` — Server error response
- `default`

## Changes

- **2026-04-09** `99a21fdf9159` — 1 info
  - added the required property `data/extra` to the response with the `200` status
- **2026-04-02** `3e68b318eeaa` — 2 info
  - added the required property `data/balances/items/values/allOf[#/components/schemas/WalletAsset]/anyOf[subschema #1: Known asset]/allOf[#/components/schemas/WalletAssetKnown]/extra/value/extra/text/price` to the response with the `200` status
  - added the required property `data/balances/items/values/allOf[#/components/schemas/WalletAsset]/anyOf[subschema #1: Known asset]/allOf[#/components/schemas/WalletAssetKnown]/extra/value/price` to the response with the `200` status
- …earlier changes not shown

[Full history](https://skmtc.dev/cryptechdev/apis/neptune-api-v2/changes/api/v1/users/:address/wallet/balances/get.md)

---

[API](https://skmtc.dev/cryptechdev/apis/neptune-api-v2.md) · [All operations](https://skmtc.dev/cryptechdev/apis/neptune-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cryptechdev/neptune-api-v2/revisions/05e0ec4b9b94/schema)
