GET
/
categories
๐Ÿ’ผ Categories List
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/onchain/categories \
  --header 'x-cg-pro-api-key: <api-key>'
{
  "data": [
    {
      "id": "cat-meme",
      "type": "category",
      "attributes": {
        "name": "Cat Meme",
        "description": "Tokens with a cat",
        "volume_change_percentage": {
          "h1": "-26.62",
          "h6": "6380.35",
          "h12": "2889.48",
          "h24": "1394.37"
        },
        "reserve_in_usd": "78807449.34",
        "fdv_usd": "2176839810.81",
        "h24_volume_usd": "19779444.75",
        "h24_tx_count": 32892
      }
    },
    {
      "id": "memecoin",
      "type": "category",
      "attributes": {
        "name": "Memecoin",
        "description": "Tokens that are memes or related to meme images.",
        "volume_change_percentage": {
          "h1": "-20.99",
          "h6": "1899.02",
          "h12": "1114.05",
          "h24": "554.86"
        },
        "reserve_in_usd": "196471556.46",
        "fdv_usd": "7525785445.92",
        "h24_volume_usd": "47065466.48",
        "h24_tx_count": 74150
      }
    }
  ]
}

Tips

Note

  • This endpoint returns 50 categories per page.
  • GeckoTerminal Equivalent Page: https://www.geckoterminal.com/category
  • Cache/Update frequency: every 60 seconds.
  • Exclusive for all Paid Plan Subscribers (Analyst, Lite, Pro and Enterprise).

Authorizations

x-cg-pro-api-key
string
header
required

Query Parameters

page
integer

page through results Default value: 1

sort
enum<string>

sort the categories by field Default value: h6_volume_percentage_desc

Available options:
h1_volume_percentage_desc,
h6_volume_percentage_desc,
h12_volume_percentage_desc,
h24_tx_count_desc,
h24_volume_usd_desc,
fdv_usd_desc,
reserve_in_usd_desc

Response

200 - application/json

Get list of supported categories

data
object[]