GET
/
v2
/
projects
/
{project_id}
/
products
/
{product_id}
Get details for a specific product of a project
curl --request GET \
  --url https://api.tokenterminal.com/v2/projects/{project_id}/products/{product_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "name": "<string>",
    "product_id": "<string>",
    "project_id": "<string>",
    "symbol": "<string>",
    "market_sectors": {},
    "chains": [
      "<string>"
    ],
    "aggregate_by_options": {},
    "metric_availability": {},
    "metric_definitions": [
      {}
    ],
    "metric_sources": [
      {}
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

project_id
string
required

ID of the project

product_id
string
required

ID of the product

Response

200
application/json

OK

The response is of type object.