GET
/
v2
/
datasets
/
blockchain_comparison
Get the Blockchain comparison dataset
curl --request GET \
  --url https://api.tokenterminal.com/v2/datasets/blockchain_comparison \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "chain_id": "<string>",
      "chain_name": "<string>",
      "market_cap_fd_latest": 123,
      "market_cap_fd_1d_change": 123,
      "market_cap_fd_7d_change": 123,
      "market_cap_fd_30d_change": 123,
      "market_cap_fd_90d_change": 123,
      "market_cap_fd_180d_change": 123,
      "market_cap_fd_365d_change": 123,
      "market_cap_circ_latest": 123,
      "market_cap_circ_1d_change": 123,
      "market_cap_circ_7d_change": 123,
      "market_cap_circ_30d_change": 123,
      "market_cap_circ_90d_change": 123,
      "market_cap_circ_180d_change": 123,
      "market_cap_circ_365d_change": 123,
      "active_users_daily_latest": 123,
      "active_users_daily_1d_change": 123,
      "active_users_daily_7d_change": 123,
      "active_users_daily_30d_change": 123,
      "active_users_daily_90d_change": 123,
      "active_users_daily_180d_change": 123,
      "active_users_daily_365d_change": 123,
      "transaction_count_1d": 123,
      "transaction_count_1d_trend": 123,
      "transaction_count_7d": 123,
      "transaction_count_7d_trend": 123,
      "transaction_count_30d": 123,
      "transaction_count_30d_trend": 123,
      "transaction_count_90d": 123,
      "transaction_count_90d_trend": 123,
      "transaction_count_180d": 123,
      "transaction_count_180d_trend": 123,
      "transaction_count_365d": 123,
      "transaction_count_365d_trend": 123,
      "transaction_count_max": 123,
      "core_developers_latest": 123,
      "core_developers_1d_change": 123,
      "core_developers_7d_change": 123,
      "core_developers_30d_change": 123,
      "core_developers_90d_change": 123,
      "core_developers_180d_change": 123,
      "core_developers_365d_change": 123,
      "ecosystem_fees_1d_sum": 123,
      "ecosystem_fees_1d_trend": 123,
      "ecosystem_fees_7d_sum": 123,
      "ecosystem_fees_7d_trend": 123,
      "ecosystem_fees_30d_sum": 123,
      "ecosystem_fees_30d_trend": 123,
      "ecosystem_fees_90d_sum": 123,
      "ecosystem_fees_90d_trend": 123,
      "ecosystem_fees_180d_sum": 123,
      "ecosystem_fees_180d_trend": 123,
      "ecosystem_fees_365d_sum": 123,
      "ecosystem_fees_365d_trend": 123,
      "ecosystem_fees_max_sum": 123,
      "ecosystem_revenue_1d_sum": 123,
      "ecosystem_revenue_1d_trend": 123,
      "ecosystem_revenue_7d_sum": 123,
      "ecosystem_revenue_7d_trend": 123,
      "ecosystem_revenue_30d_sum": 123,
      "ecosystem_revenue_30d_trend": 123,
      "ecosystem_revenue_90d_sum": 123,
      "ecosystem_revenue_90d_trend": 123,
      "ecosystem_revenue_180d_sum": 123,
      "ecosystem_revenue_180d_trend": 123,
      "ecosystem_revenue_365d_sum": 123,
      "ecosystem_revenue_365d_trend": 123,
      "ecosystem_revenue_max_sum": 123,
      "ecosystem_dex_trading_volume_1d_sum": 123,
      "ecosystem_dex_trading_volume_1d_trend": 123,
      "ecosystem_dex_trading_volume_7d_sum": 123,
      "ecosystem_dex_trading_volume_7d_trend": 123,
      "ecosystem_dex_trading_volume_30d_sum": 123,
      "ecosystem_dex_trading_volume_30d_trend": 123,
      "ecosystem_dex_trading_volume_90d_sum": 123,
      "ecosystem_dex_trading_volume_90d_trend": 123,
      "ecosystem_dex_trading_volume_180d_sum": 123,
      "ecosystem_dex_trading_volume_180d_trend": 123,
      "ecosystem_dex_trading_volume_365d_sum": 123,
      "ecosystem_dex_trading_volume_365d_trend": 123,
      "ecosystem_dex_trading_volume_max_sum": 123,
      "ecosystem_tvl_latest": 123,
      "ecosystem_tvl_1d_change": 123,
      "ecosystem_tvl_7d_change": 123,
      "ecosystem_tvl_30d_change": 123,
      "ecosystem_tvl_90d_change": 123,
      "ecosystem_tvl_180d_change": 123,
      "ecosystem_tvl_365d_change": 123,
      "ecosystem_active_loans_latest": 123,
      "ecosystem_active_loans_1d_change": 123,
      "ecosystem_active_loans_7d_change": 123,
      "ecosystem_active_loans_30d_change": 123,
      "ecosystem_active_loans_90d_change": 123,
      "ecosystem_active_loans_180d_change": 123,
      "ecosystem_active_loans_365d_change": 123,
      "ecosystem_project_count_latest": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

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.

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.