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

Get Graduated Tokens By Exchange Mainnet Only

GEThttps://deep-index.moralis.io/api/v2.2/erc20/exchange/:exchange/graduated

Returns a list of tokens that have graduated from bonding curve to full trading on the specified exchange

PATH PARAMS
exchangestringrequired
The exchange identifier
QUERY PARAMS
chainstring
The chain to query
limitnumber
The maximum number of tokens to return
cursorstring
Cursor for pagination
Responses
200Returns a list of graduated tokens on the specified exchange
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/erc20/exchange/pumpfun/graduated?chain=ronin&limit=10' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"result": [
{
"tokenAddress": "0x2a7dc2753ce8e5bb58d87d7a3b7a0a3a4f8e9c1d",
"name": "RONKE",
"symbol": "RONKE",
"logo": "https://cf-ipfs.com/ipfs/QmYrNjXgKzDXG1234example",
"decimals": "18",
"priceNative": "0.000609987141763549",
"priceUsd": "0.000451249123892451",
"liquidity": "32540.67",
"fullyDilutedValuation": "451249.123892451",
"graduatedAt": "2025-05-20T08:15:42.000Z"
}
],
"cursor": ""
}