Trending Tokens
Retrieve a list of currently trending crypto tokens based on real-time activity and market signals. Useful for identifying high-momentum tokens gaining traction across specific chains.
Endpoint
GET https://api.dapplooker.com/v1/trending
💡 Pro Tips
This endpoint returns the top 10 trending tokens on a selected chain—perfect for spotting what’s gaining traction in real time.
It provides live market data such as volume, liquidity, market cap, and short-term price changes (1h & 24h)—ideal for quick sentiment reads.
Use it to identify high-momentum tokens early before they gain broader visibility.
Combine with other endpoints like Token Details and Technical Indicators to build a deeper picture of each trending token’s fundamentals.
Query Parameters
Parameter name
Type
Mandatory
Description
api_key
string
Yes
Your unique Loky API key used for authentication
chain
string
Yes
The network chain to query. Supported chains: base, solana
Sample Request
# For Base Chain
curl --location 'https://api.dapplooker.com/v1/trending?api_key=<API_KEY>&chain=base'
# For Solana Chain
curl --location 'https://api.dapplooker.com/v1/trending?api_key=<API_KEY>&chain=solana'
Sample Response
{
"success": true,
"data": [
{
"token_id": "pog-digital",
"token_name": "Pog Coin",
"token_symbol": "POGS",
"token_address": "0x728f0a7fec1859cb0d71a432271d4e80310d235f",
"volume": "754.89",
"liquidity": "23253.20000",
"mcap": "1712403.00",
"price_change_percentage_1h": "0.58",
"price_change_percentage_24h": "-3.15",
"network": "base"
},
{
"token_id": "whim-bet-by-virtuals",
"token_name": "whim.bet by Virtuals",
"token_symbol": "WHIM",
"token_address": "0x39a1cce09d7354ac2db86c6b02924360a10e4793",
"volume": "87029.00",
"liquidity": "370716.60000",
"mcap": "1273079.00",
"price_change_percentage_1h": "2.05",
"price_change_percentage_24h": "21.71",
"network": "base"
}
... // Upto 10 items
]
}
Response Fields Explanation
token_id
(string): A unique assigned identifier for the token.token_name
(string): The full, human-readable name of the token.token_symbol
(string): The token’s ticker symbol, typically used in trading.token_address
(string): The on-chain address (contract address) of the token.volume
(string): The total trading volume for the token in the last 24 hours, denominated in USD.liquidity
(string): The current liquidity available for the token, typically based on decentralized exchange pools.mcap
(string): The market capitalization of the token, calculated as price × circulating supply.price_change_percentage_1h
(string): The token’s price percentage change over the past 1 hour.price_change_percentage_24h
(string): The token’s price percentage change over the past 24 hours.network
(string): The blockchain network on which the token is deployed (e.g.,base
,solana
).
Last updated
Was this helpful?