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=solana', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Response Example
[
{
"chainId": "solana",
"tokenAddress": "CfJ58KZpVvPm5ketxbUMmRMHZh41AWZh9qx8r9cspump",
"name": "doodles",
"uniqueName": "doodles-821143262",
"symbol": "DOOD",
"decimals": 6,
"logo": "https://d23exngyjlavgo.cloudfront.net/solana_CfJ58KZpVvPm5ketxbUMmRMHZh41AWZh9qx8r9cspump",
"usdPrice": 0.000655483894313,
"createdAt": 1739745029,
"marketCap": 655478,
"liquidityUsd": 56983,
"holders": 24667,
"pricePercentChange": {
"1h": -0.33801255044203293,
"4h": -0.48742981106028005,
"12h": 1.1810803769845877,
"24h": 7.537889198641526
},
"totalVolume": {
"1h": 434764,
"4h": 1729031,
"12h": 9100448,
"24h": 10568778
},
"transactions": {
"1h": 9589,
"4h": 34103,
"12h": 128212,
"24h": 145532
},
"buyTransactions": {
"1h": 4684,
"4h": 18119,
"12h": 71017,
"24h": 80921
},
"sellTransactions": {
"1h": 4905,
"4h": 15984,
"12h": 57195,
"24h": 64611
},
"buyers": {
"1h": 3937,
"4h": 14699,
"12h": 52021,
"24h": 58690
},
"sellers": {
"1h": 3368,
"4h": 8955,
"12h": 25689,
"24h": 28200
}
}
]