GET
/
v2
/
datasets
/
crypto_screener
Get the Crypto screener dataset
curl --request GET \
  --url https://api.tokenterminal.com/v2/datasets/crypto_screener \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "project_name": "<string>",
    "project_id": "<string>",
    "market_sector_id": "<string>",
    "market_sector_name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

project_ids
string[]

Allows you to select one or more of the projects available in the dataset. When including multiple projects, separate each one with a comma. Example: uniswap.

market_sector_ids
string[]

Allows you to select one or more of the market sectors available in the dataset. When including multiple market sectors, separate each one with a comma. Example: exchange,lending.

order_by
string

Allows you to select a field by which the response array is sorted.

order_direction
string

Allows you to define order direction for the field selected in order_by. If no order_direction is selected, the response defaults to asc.

limit
number

Limit the number of results returned. Usage through API reference has max limit of 50.

Response

200 - application/json

OK

The response is of type object.