---
title: "Get list of fungible assets"
method: GET
path: "/v1/fungibles/"
tags: ["fungibles"]
---

# Get list of fungible assets

`GET /v1/fungibles/`

This endpoint returns a paginated list of fungible assets supported by Zerion. It also provides the ability to search for fungibles.
If no fungible assets are found for given filters, the empty list with 200 status is returned.

> NOTE: This endpoint supports a lot of filters, sorting, and pagination parameters. Ensure your request URL length is within a safe range for your platform. Usually, 2000 characters are the safe limit in virtually any combination of client and server software.

> NOTE: The `filter[implementation_address]` parameter ignores `filter[search_query]`. It may be changed in the future.

> NOTE: Consider all IDs as abstract strings, without making any assumptions about their format or relying on such assumptions. There is a non-zero probability that IDs may change in the future, and this should not result in any breaking changes.

## Query parameters

- `currency` 'eth' | 'btc' | 'usd' | 'eur' | 'krw' | 'rub' | 'gbp' | 'aud' | 'cad' | 'inr' | 'jpy' | 'nzd' | 'try' | 'zar' | 'cny' | 'chf'
- `page` object
  - `after` string, nullable — This field is used for result pagination. You SHOULD NOT use this parameter directly. To get the next page of the results you should use `links.next` field. Omit it to return the first page.
  - `size` integer — Set maximum number of items per a page in the pagination.
- `filter[search_query]` string
- `filter[implementation_chain_id]` string
- `filter[implementation_address]` string
- `filter[fungible_implementations]` string[]
- `filter[fungible_ids]` string[]
- `sort` '-market_data.market_cap' | 'market_data.market_cap' | '-market_data.price.last' | 'market_data.price.last' | '-market_data.price.percent_change_1d' | 'market_data.price.percent_change_1d' | '-market_data.price.percent_change_30d' | 'market_data.price.percent_change_30d' | '-market_data.price.percent_change_90d' | 'market_data.price.percent_change_90d' | '-market_data.price.percent_change_365d' | 'market_data.price.percent_change_365d' | '-market_data.trading_volumes.volume_1d' | 'market_data.trading_volumes.volume_1d'

## Response `200`

Response for requested list of fungibles

- ResponseMany2
  - `links` ResponseManyLinks2, required
    - `self` string, url, required
    - `first` string, url
    - `next` string, url
    - `prev` string, url
  - `data` Container12[], required
    - `type` string, required — Fungible resource type
    - `id` string, required — Fungible unique identifier
    - `attributes` Attributes10
      - `name` string, required — Displayable name of the fungible.
      - `symbol` string, required — Displayable symbol of the fungible.
      - `description` string, nullable — Brief description of the fungible.
      - `icon` Icon — Icon related to object.
        - `url` string, url, nullable — URL of the icon.
      - `flags` Flags, required
        - `verified` boolean, required — Whether this fungible verified or not
      - `external_links` ExternalLink[], required — A list of relevant URLs.
        - `type` string — Type of the link
        - `name` string — Displayable name of the link
        - `url` string, url, required — Link to the external resource
      - `implementations` AttributesImplementation[], required — Implementation details of the fungible on various chains.
        - `chain_id` string, required — Unique id of the chain.
        - `address` string, nullable, required — Implementation address on the chain.
        - `decimals` integer, required — Number of decimals points of the implementation.
        - `market_data` ImplementationMarketData
          - `trading_volumes` TradingVolumes
            - `volume_1d` number, double — Trading volume over the last 24 hours in the selected currency.
        - `deployment_date` string, date-time — Date and time when the token contract was deployed on this chain (ISO 8601).
      - `market_data` MarketData, required
        - `total_supply` number, double — Total market supply of fungible
        - `circulating_supply` number, double — Circulating value of fungible
        - `fully_diluted_valuation` number, double — Total market capitalization of fungible in selected currency
        - `market_cap` number, double — Circulating market capitalization of fungible in selected currency
        - `price` number, double, nullable, required — Latest fungible price
        - `changes` MarketDataChanges
          - `percent_1d` number, double, nullable — Price relative change in percent for 1 day
          - `percent_30d` number, double, nullable — Price relative change in percent for 30 days
          - `percent_90d` number, double, nullable — Price relative change in percent for 90 days
          - `percent_365d` number, double, nullable — Price relative change in percent for 1 year
        - `trading_volumes` TradingVolumes
          - `volume_1d` number, double — Trading volume over the last 24 hours in the selected currency.
    - `relationships` Relationships6
      - `chart_hour` object, required
        - `links` object, required
          - `related` string, url, required
        - `data` object, required
          - `type` string, required
          - `id` string, required
      - `chart_day` object, required
        - `links` object, required
          - `related` string, url, required
        - `data` object, required
          - `type` string, required
          - `id` string, required
      - `chart_week` object, required
        - `links` object, required
          - `related` string, url, required
        - `data` object, required
          - `type` string, required
          - `id` string, required
      - `chart_month` object, required
        - `links` object, required
          - `related` string, url, required
        - `data` object, required
          - `type` string, required
          - `id` string, required
      - `chart_year` object, required
        - `links` object, required
          - `related` string, url, required
        - `data` object, required
          - `type` string, required
          - `id` string, required
      - `chart_max` object, required
        - `links` object, required
          - `related` string, url, required
        - `data` object, required
          - `type` string, required
          - `id` string, required

## Other responses

- `400` — Parameters are malformed
- `401` — Unathenticated request
- `429` — Too many requests error

---

[API](https://skmtc.dev/zerion/apis/rest-api.md) · [All operations](https://skmtc.dev/zerion/apis/rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/zerion/rest-api/revisions/2ef116ef914f/schema)
