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

Ethereum Logo

Looking for token pairs by address on EVM?

Access token pairs data on EVM using our API.

Explore EVM API
GEThttps://solana-gateway.moralis.io/token/:network/:address/pairs

Get the supported pairs for a specific token address.

PATH PARAMS
networkstringrequired
The network to query
addressstringrequired
The address to query
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/So11111111111111111111111111111111111111112/pairs?limit=25' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"cursor": "",
"pageSize": "",
"page": "",
"pairs": {
"exchangeAddress": "",
"exchangeName": "",
"exchangeLogo": "",
"pairAddress": "",
"pairLabel": "",
"usdPrice": "",
"usdPrice24hrPercentChange": "",
"usdPrice24hrUsdChange": "",
"volume24hrNative": "",
"volume24hrUsd": "",
"liquidityUsd": "",
"inactivePair": "",
"baseToken": "",
"quoteToken": "",
"pair": {
"tokenAddress": "",
"tokenName": "",
"tokenSymbol": "",
"tokenLogo": "",
"tokenDecimals": "",
"pairTokenType": "",
"liquidityUsd": ""
}
}
}