Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key
Version: 2.2

Get Trending Tokens Mainnet Only Premium Endpoint

💡Premium Endpoint

To use this API, you will need an API key associated with a Moralis account on the Business plan or higher.

GEThttps://deep-index.moralis.io/api/v2.2/tokens/trending

Get trending tokens

QUERY PARAMS
chainstring
The chain to query
limitnumber
The desired page size of the result.
Responses
API KEY
// Dependencies to install:
// $ npm install node-fetch --save
// add "type": "module" to package.json

import fetch from 'node-fetch';

const options = {
method: 'GET',
headers: {
accept: 'application/json',
'X-API-Key': 'YOUR_API_KEY'
},
};

fetch('https://deep-index.moralis.io/api/v2.2/tokens/trending?chain=eth', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Response Example
[
{
"chainId": "0x1",
"tokenAddress": "0xadd39272e83895e7d3f244f696b7a25635f34234",
"name": "Pepe Unchained",
"uniqueName": "pepe-unchained-19",
"symbol": "PEPU",
"decimals": 18,
"logo": "https://d23exngyjlavgo.cloudfront.net/0x1_0xadd39272e83895e7d3f244f696b7a25635f34234",
"usdPrice": 0.00790310700101,
"createdAt": 1733839223,
"marketCap": 63224066,
"liquidityUsd": 1150563,
"holders": 75783,
"pricePercentChange": {
"1h": -0.03552125070606443,
"4h": -0.09207686802800803,
"12h": -0.11019146356496257,
"24h": -0.13592146886852405
},
"totalVolume": {
"1h": 97580,
"4h": 761204,
"12h": 1010638,
"24h": 1291895
},
"transactions": {
"1h": 119,
"4h": 603,
"12h": 904,
"24h": 1428
},
"buyTransactions": {
"1h": 54,
"4h": 360,
"12h": 511,
"24h": 746
},
"sellTransactions": {
"1h": 65,
"4h": 243,
"12h": 393,
"24h": 682
},
"buyers": {
"1h": 47,
"4h": 275,
"12h": 359,
"24h": 515
},
"sellers": {
"1h": 57,
"4h": 210,
"12h": 339,
"24h": 576
}
}
]