Token - New listing
curl --request GET \
--url https://public-api.birdeye.so/defi/v2/tokens/new_listing \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v2/tokens/new_listing"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/v2/tokens/new_listing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"items": [
{
"address": "6Zk9e3nfXdYLXHYu5NvDiPHGMcjujVBv6gWRr7ckSdhP",
"symbol": "TOPCAT",
"name": "TOPCAT",
"decimals": 9,
"source": "raydium",
"liquidityAddedAt": "2024-09-18T17:59:23",
"logoURI": null,
"liquidity": 15507.41635596545
},
{
"address": "DsWUsiseYxAHZXEvq5cVcymYaohk8Gpe8E4otsjFpump",
"symbol": "Onigiri",
"name": "Onigiri",
"decimals": 6,
"source": "raydium",
"liquidityAddedAt": "2024-09-18T17:57:14",
"logoURI": "https://ipfs.io/ipfs/QmfXbLtRVuTTkazYqQix4R8FYW4Xkj2ZEnWKhLpGugaLQr",
"liquidity": 32994.397007045525
}
]
}
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}Token/Market List
Token - New listing
Retrieve a list of newly listed tokens.
GET
/
defi
/
v2
/
tokens
/
new_listing
Token - New listing
curl --request GET \
--url https://public-api.birdeye.so/defi/v2/tokens/new_listing \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v2/tokens/new_listing"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/v2/tokens/new_listing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"items": [
{
"address": "6Zk9e3nfXdYLXHYu5NvDiPHGMcjujVBv6gWRr7ckSdhP",
"symbol": "TOPCAT",
"name": "TOPCAT",
"decimals": 9,
"source": "raydium",
"liquidityAddedAt": "2024-09-18T17:59:23",
"logoURI": null,
"liquidity": 15507.41635596545
},
{
"address": "DsWUsiseYxAHZXEvq5cVcymYaohk8Gpe8E4otsjFpump",
"symbol": "Onigiri",
"name": "Onigiri",
"decimals": 6,
"source": "raydium",
"liquidityAddedAt": "2024-09-18T17:57:14",
"logoURI": "https://ipfs.io/ipfs/QmfXbLtRVuTTkazYqQix4R8FYW4Xkj2ZEnWKhLpGugaLQr",
"liquidity": 32994.397007045525
}
]
}
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}- Usage Note
- Accessibility
- Chain Supported
Recently listed token discovery.
- This endpoint returns newly listed tokens and is intended for fresh-launch monitoring.
limitsupports1to20items per request.- If provided,
time_tomust stay within the last 3 days. meme_platform_enabled=trueincludes meme-platform aware discovery behavior where supported.
- Standard
- Lite
- Starter
- Premium
- Business
- Enterprise
All supported chains except Sui
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
20 CUper request.
Use Cases 💡
Use Cases 💡
- Monitor fresh token launches and seed candidate pipelines for research or trading.
- Power new-listing dashboards, alert feeds, and launch-watch pages.
- Track very recent supply entering the market before it shows up in broader ranked lists.
- Combine with security, holder, and price endpoints to triage new listings quickly.
How to Use 🛠️
How to Use 🛠️
- Set
x-chainfor the target network. - Use
limitto control batch size, keeping it at20or below. - Optionally pass
time_towhen you want a bounded recent window, but keep it within the last 3 days. - Enable
meme_platform_enabledif your workflow explicitly cares about meme-platform launches.
Best Practices ✅
Best Practices ✅
- Poll this endpoint on a tight cadence and deduplicate by token address in your ingestion layer.
- Rank or triage results immediately with security, liquidity, and holder checks so the feed stays actionable.
- Treat new listings as discovery leads, not quality signals on their own.
Authorizations
API key for authentication
Headers
A chain name listed in supported networks except Sui.
Available options:
solana, ethereum, bsc, base, robinhood, mantle, hyperevm, arbitrum, avalanche, optimism, polygon, zksync, monad, aptos, fogo, megaeth Query Parameters
Specify the end time using unix timestamps in seconds
Required range:
1 <= x <= 10000000000Number of items per page.
Required range:
1 <= x <= 20Enable to receive token new listing from meme platforms (eg: pump.fun). This filter only supports Solana.
Available options:
true, false Was this page helpful?

