Skip to main content
GET
/
v2
/
assets
/
{asset_id}
Get asset details and available metrics
curl --request GET \
  --url https://api.tokenterminal.com/v2/assets/{asset_id} \
  --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>",
        "logo": "<string>"
      }
    ],
    "created_at": "<string>",
    "inserted_at": "<string>",
    "available_metrics": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

asset_id
string
required

ID of the asset

Allows you to select one of the assets available.

The full list is available on the assets endpoint (see above).

Response

OK

data
object