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

GEThttps://solana-gateway.moralis.io/token/mainnet/exchange/:exchange/new

Returns a list of newly created tokens on the specified exchange

PATH PARAMS
exchangestringrequired
The exchange identifier
QUERY PARAMS
limitnumber
The maximum number of tokens to return
cursorstring
Cursor for pagination
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://solana-gateway.moralis.io/token/mainnet/exchange/pumpfun/new?limit=100', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Response Example
{
"result": [
{
"tokenAddress": "HcUx4pSPpWoKZCPhHApnMVp3ZE29TM9ZB9JtVFr1LjoB",
"name": "Test",
"symbol": "$TEST",
"logo": "",
"decimals": "6",
"priceNative": "0.0000000280515",
"priceUsd": "0.000004092",
"liquidity": "8768.063894688",
"fullyDilutedValuation": "4092",
"createdAt": "2025-03-05T09:34:11.000Z"
}
],
"cursor": ""
}