v1

latestOpenAPI 3.0.32026-07-2639188178.2 KB
fungibles

Get list of fungible assets

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.

get/v1/fungibles/

Query parameters

currency'eth' | 'btc' | 'usd' | 'eur' | 'krw' | 'rub' | 'gbp' | 'aud' | 'cad' | 'inr' | 'jpy' | 'nzd' | 'try' | 'zar' | 'cny' | 'chf'

Denominated currency value of returned prices

afterstring 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.

sizeinteger

Set maximum number of items per a page in the pagination.

Pagination parameters

filter[search_query]string
Example:Index

Query for a full-text search.

filter[implementation_chain_id]string
Example:polygon

Keep only fungibles from this chain. Available chain ids can be found in chains endpoints.

filter[implementation_address]string
Example:0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6

Keep only fungibles deployed at given address. Is it possible that different fungibles are deployed at the same address on different chains.

filter[fungible_implementations]string[]

Keep only fungibles with given implementations (comma-separated list of chain:address pairs). Maximum of 25 implementations allowed. example: "base,ethereum:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"

This filter is mutually exclusive with filter[implementation_chain_id] and filter[implementation_address].

filter[fungible_ids]string[]

Keep only fungibles with the given ids (comma-separated list)

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'

Choose how the result should be ordered

Response

Response for requested list of fungibles

Example response

{
  "links": {
    "self": "https://api.zerion.io/v1/fungibles/",
    "first": "https://api.zerion.io/v1/fungibles/",
    "next": "https://api.zerion.io/v1/fungibles/",
    "prev": "https://api.zerion.io/v1/fungibles/"
  },
  "data": [
    {
      "type": "fungibles",
      "id": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6",
      "attributes": {
        "name": "Bankless BED Index",
        "symbol": "BED",
        "description": "The BED index is meant to track crypto's top 3 investab.",
        "icon": {
          "url": "https://token-icons.s3.amazonaws.com/0x0391d2021f89dc339f60fff84546ea23e337750f.png"
        },
        "flags": {
          "verified": true
        },
        "external_links": [
          {
            "type": "website",
            "name": "Website",
            "url": "https://www.indexcoop.com"
          }
        ],
        "implementations": [
          {
            "chain_id": "ethereum",
            "address": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6",
            "decimals": 18,
            "market_data": {
              "trading_volumes": {
                "volume_1d": 40096375.69294812
              }
            },
            "deployment_date": "2020-09-09T11:11:13Z"
          }
        ],
        "market_data": {
          "total_supply": 29905.762448515918,
          "circulating_supply": 29905.762448515918,
          "fully_diluted_valuation": 3196313.736038149,
          "market_cap": 3196313.736038149,
          "price": 106.87952669793131,
          "changes": {
            "percent_1d": -0.7379066649086338,
            "percent_30d": -2.499465618806962,
            "percent_90d": 11.316340269371775
          },
          "trading_volumes": {
            "volume_1d": 40096375.69294812
          }
        }
      },
      "relationships": {
        "chart_hour": {
          "links": {
            "related": "https://api.zerion.io/v1/fungibles/0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6/charts/hour"
          },
          "data": {
            "type": "fungible_charts",
            "id": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6-hour"
          }
        },
        "chart_day": {
          "links": {
            "related": "https://api.zerion.io/v1/fungibles/0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6/charts/day"
          },
          "data": {
            "type": "fungible_charts",
            "id": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6-day"
          }
        },
        "chart_week": {
          "links": {
            "related": "https://api.zerion.io/v1/fungibles/0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6/charts/week"
          },
          "data": {
            "type": "fungible_charts",
            "id": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6-week"
          }
        },
        "chart_month": {
          "links": {
            "related": "https://api.zerion.io/v1/fungibles/0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6/charts/month"
          },
          "data": {
            "type": "fungible_charts",
            "id": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6-month"
          }
        },
        "chart_year": {
          "links": {
            "related": "https://api.zerion.io/v1/fungibles/0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6/charts/year"
          },
          "data": {
            "type": "fungible_charts",
            "id": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6-year"
          }
        },
        "chart_max": {
          "links": {
            "related": "https://api.zerion.io/v1/fungibles/0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6/charts/max"
          },
          "data": {
            "type": "fungible_charts",
            "id": "0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6-max"
          }
        }
      }
    }
  ]
}