Skip to main content
GET
/
v2
/
assets
Get a list of all assets
curl --request GET \
  --url https://api.tokenterminal.com/v2/assets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "asset_id": "<string>",
      "asset_type": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "coingecko_id": "<string>",
      "addresses": [
        {
          "chain_id": "<string>",
          "token_address": "<string>",
          "token_name": "<string>",
          "token_symbol": "<string>"
        }
      ],
      "products": [
        {
          "data_id": "<string>",
          "product_id": "<string>",
          "tags": [
            "<string>"
          ],
          "relation_to_the_project": "<string>"
        }
      ],
      "created_at": "<string>",
      "inserted_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

asset_ids
string[]

List of asset IDs to filter by.

Allows you to select one or more assets. When including multiple assets, separate each one with a comma. Example: usdc,usdt.

asset_types
string[]

List of asset types to filter by.

Allows you to filter assets by their type. When including multiple types, separate each one with a comma.

market_sectors
string[]

List of market sector IDs to filter assets by.

Allows you to select one or more market sectors to filter the results. Only assets belonging to any of the specified market sectors will be included. When including multiple market sectors, separate each one with a comma. Example: blockchains-l1,lending.

The full list of available market sectors can be retrieved from the /v2/market-sectors endpoint.

limit
integer
default:1000

Maximum number of assets to return.

Required range: 1 <= x <= 1000
offset
integer
default:0

Number of assets to skip for pagination.

Required range: x >= 0

Response

200 - application/json

OK

data
object[]