curl --request GET \
--url https://api.tokenterminal.com/v2/projects \
--header 'Authorization: Bearer <token>'{
"data": [
{
"name": "<string>",
"project_id": "<string>",
"coingecko_id": "<string>",
"symbol": "<string>",
"url": "<string>",
"is_archived": true,
"archived_reason": "<string>",
"maintenance_reason": "<string>",
"products": [
{
"product_id": "<string>",
"product_name": "<string>",
"symbol": "<string>",
"url": "<string>"
}
]
}
]
}Use this endpoint to retrieve a list of all projects that are available on the API.
curl --request GET \
--url https://api.tokenterminal.com/v2/projects \
--header 'Authorization: Bearer <token>'{
"data": [
{
"name": "<string>",
"project_id": "<string>",
"coingecko_id": "<string>",
"symbol": "<string>",
"url": "<string>",
"is_archived": true,
"archived_reason": "<string>",
"maintenance_reason": "<string>",
"products": [
{
"product_id": "<string>",
"product_name": "<string>",
"symbol": "<string>",
"url": "<string>"
}
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK
Show child attributes
Returns the project name used on the web application.
Required input on the API when retrieving data for a project.
Returns the Coingecko ID for a project.
Returns the ticker for a project’s token (exists if token is launched).
Returns a link to the endpoint for querying a project’s metric availability data.
Returns true if the project has been archived. Archived projects retain historical data but no new data is processed for them.
Returns information on why the project has been archived if applicable.
Returns information on why the project is having maintenance if applicable.
Show child attributes