Categories
Categories List
This endpoint allows you to query all the supported categories on GeckoTerminal
get/onchain/categories
Query parameters
pageinteger
page through results <br> Default value: 1
sort'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'
sort the categories by field <br> Default value: h6_volume_percentage_desc
Response
Get list of supported categories
Example response
{
"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
}
}
]
}