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://solana-gateway.moralis.io/token/:network/exchange/:exchange/new

Get the list of new tokens by given exchange.

PATH PARAMS
networkstringrequired
The network to query
exchangestringrequired
QUERY PARAMS
cursorstring
The cursor to the next page
limitnumber
The limit per page
Responses
200
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://solana-gateway.moralis.io/token/mainnet/exchange/pumpfun/new?limit=10' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"cursor": "",
"pageSize": "",
"page": "",
"result": {
"tokenAddress": "",
"name": "",
"symbol": "",
"logo": "",
"decimals": "",
"priceNative": "",
"priceUsd": "",
"liquidity": "",
"fullyDilutedValuation": "",
"createdAt": "2024-11-28T09:44:55.000Z"
}
}