---
title: "Get info for all assets"
method: GET
path: "/api/v1/assets"
tags: ["Assets"]
---

# Get info for all assets

`GET /api/v1/assets`

## Response `200`

Success response

- object — List data success response
  - `data` AssetInfo[], required — Primary response content (list)
    - `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
    - `metadata` AssetMetadata, required — Additional metadata for assets
      - `name` string, required — Full name of the asset
      - `symbol` string, required — Symbol of the asset, e.g.: `NEPT` `INJ`
      - `symbol_denom` string, required — Denom symbol for the asset (e.g. `inj` for `INJ`, `sat` for `BTC`)
      - `decimals_denom` integer, required — Denom exponent, or num. of decimal places that shift between denom/standard amounts (e.g. `18` for `INJ`)
      - `decimals_display` integer, required — Number of decimals used when displaying amounts of this asset (this is subjective and used for generating text representations)
    - `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.
      - object
        - `kind` 'regular', required
        - `neptune_receipt_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
      - object
        - `kind` 'neptune_receipt_token', required
        - `origin_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
      - object
        - `kind` 'liquid_staking_token', required
        - `origin_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
  - `count` integer, required — Total number of objects irrespective of any pagination parameters.
  - `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

## Changes

- **2026-03-29** `65d147ca4389` — 1 breaking, 2 info
  - the response property `error` became nullable for the status `200`
  - added the non-success response with the status `500`
  - removed `#/components/schemas/ErrorData, subschema #2` from the `error` response property `anyOf` list for the response status `200`
- **2026-03-01** `9048b9a34641` — 6 breaking, 16 info
  - added `subschema #1: Invalid request, subschema #2: Validation error, subschema #3: Requested entity not found, subschema #4: Contract error, subschema #5: Internal server error` to the `error/anyOf[#/components/schemas/ErrorData]/kind/allOf[#/components/schemas/ErrorKind]/` response property `oneOf` list for the response status `200`
  - added `subschema #1: Native token, subschema #2: CW20 token` to the `data/items/asset/allOf[#/components/schemas/AssetSpec]/group` response property `oneOf` list for the response status `200`
  - added `subschema #1: User error, subschema #2: Client error, subschema #3: Server error` to the `error/anyOf[#/components/schemas/ErrorData]/scope/allOf[#/components/schemas/ErrorScope]/` response property `oneOf` list for the response status `200`
  - the `data/items/asset/allOf[#/components/schemas/AssetSpec]/group` response's property type/format changed from `string`/`` to ``/`` for status `200`
  - …18 more

[Change history](https://skmtc.dev/cryptechdev/apis/neptune-api-v2/changes/api/v1/assets/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/65d147ca4389/schema)
