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 New Tokens By Exchange Mainnet Only

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

Returns a list of newly created tokens 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 new 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/new?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.000012345678901234",
"priceUsd": "0.000008765432109876",
"liquidity": "15420.25",
"fullyDilutedValuation": "8765.432109876",
"createdAt": "2025-05-22T14:30:15.000Z"
}
],
"cursor": ""
}