GET
/
v2
/
projects
/
{project_id}
Get metric availability for a project
curl --request GET \
  --url https://api.tokenterminal.com/v2/projects/{project_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "name": "<string>",
    "project_id": "<string>",
    "symbol": "<string>",
    "description": {},
    "market_sectors": {},
    "chains": [
      "<string>"
    ],
    "links": [
      {
        "summary": "<string>",
        "url": "<string>"
      }
    ],
    "aggregate_by_options": {},
    "metric_availability": "<string>",
    "metric_definitions": [
      {
        "metric_id": "<string>",
        "definition": "<string>"
      }
    ],
    "metric_sources": [
      {
        "metric_id": "<string>",
        "definition": "<string>"
      }
    ]
  }
}

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

Required input on the API when retrieving data for a project.

Response

200 - application/json

OK

The response is of type object.