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 Token Pairs by Address Mainnet Only

Solana Logo

Looking for token pairs by address on Solana?

Access token pairs data on Solana using our API.

Explore Solana API
GEThttps://deep-index.moralis.io/api/v2.2/erc20/:token_address/pairs

List supported trading pairs for a specific ERC20 token. Each pair returned includes price, liquidity, volume and more.

PATH PARAMS
token_addressstringrequired
The address of the token
QUERY PARAMS
chainstringrequired
The chain to query
limitnumber
The number of results to return
cursorstring
The cursor returned in the previous response (used for getting the next page)
Responses
200Returns the supported pairs for the token.
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/0x6982508145454ce325ddbe47a25d4ec3d2311933/pairs?chain=eth&limit=25' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"pairs": [
{
"exchange_address": "",
"exchange_name": "",
"exchange_logo": "",
"pair_label": "",
"pair_address": "",
"usd_price": "",
"usd_price_24hr": "",
"usd_price_24hr_percent_change": "",
"usd_price_24hr_usd_change": "",
"liquidity_usd": "",
"inactive_pair": "",
"base_token": "",
"quote_token": "",
"volume_24h_native": "",
"volume_24h_usd": "",
"pair": [
{
"token_address": "",
"token_name": "",
"token_symbol": "",
"token_logo": "",
"token_decimals": "",
"pair_token_type": "",
"liquidity_usd": ""
}
]
}
],
"cursor": "",
"page_size": "50",
"page": "2"
}