GET
/
v2
/
datasets
/
stablecoins
Get the Stablecoins dataset
curl --request GET \
  --url https://api.tokenterminal.com/v2/datasets/stablecoins \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "project_id": "<string>",
      "project_name": "<string>",
      "market_sector_id": "<string>",
      "market_sector_name": "<string>",
      "chain_id": "<string>",
      "chain_name": "<string>",
      "stablecoin_ticker": "<string>",
      "stablecoin_name": "<string>",
      "token_address": "<string>",
      "stablecoin_peg": "<string>",
      "account_creation_timestamp": "<string>",
      "transfer_value_average_latest": 123,
      "price_latest": 123,
      "tokenholders_latest": 123,
      "outstanding_supply_latest": 123,
      "percent_off_peg_latest": 123,
      "transfer_volume_1d_sum": 123,
      "transfer_count_1d_sum": 123,
      "percent_off_peg_1d": 123,
      "stablecoin_senders_1d_sum": 123,
      "transfer_volume_1d_trend": 123,
      "transfer_count_1d_trend": 123,
      "stablecoin_senders_1d_trend": 123,
      "transfer_value_average_1d_change": 123,
      "tokenholders_1d_change": 123,
      "price_1d_change": 123,
      "outstanding_supply_1d_change": 123,
      "transfer_volume_7d_sum": 123,
      "transfer_count_7d_sum": 123,
      "percent_off_peg_7d": 123,
      "stablecoin_senders_7d_sum": 123,
      "transfer_volume_7d_trend": 123,
      "transfer_count_7d_trend": 123,
      "stablecoin_senders_7d_trend": 123,
      "transfer_value_average_7d_change": 123,
      "tokenholders_7d_change": 123,
      "price_7d_change": 123,
      "outstanding_supply_7d_change": 123,
      "transfer_volume_max_sum": 123,
      "transfer_count_max_sum": 123,
      "percent_off_peg_max": 123
    }
  ]
}

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: tether,circle.

chain_ids
string[]

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

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: stablecoin,derivatives.

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.