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

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

Returns a list of tokens currently in bonding curve phase 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 tokens in bonding curve phase 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/bonding?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.000015742096539867",
"priceUsd": "0.000011253734396464",
"liquidity": "18750.42",
"fullyDilutedValuation": "11253.734396464",
"bondingCurveProgress": 67.85432109876542
}
],
"cursor": ""
}