Skip to main content
GET
/
token
/
{network}
/
{address}
/
pairs
Get token pairs by address
curl --request GET \
  --url https://solana-gateway.moralis.io/token/{network}/{address}/pairs \
  --header 'X-Api-Key: <api-key>'
{
  "cursor": "<string>",
  "pageSize": 123,
  "page": 123,
  "pairs": [
    {
      "exchangeAddress": "<string>",
      "exchangeName": "<string>",
      "exchangeLogo": "<string>",
      "pairAddress": "<string>",
      "pairLabel": "<string>",
      "usdPrice": 123,
      "usdPrice24hrPercentChange": 123,
      "usdPrice24hrUsdChange": 123,
      "volume24hrNative": 123,
      "volume24hrUsd": 123,
      "liquidityUsd": 123,
      "inactivePair": true,
      "baseToken": "<string>",
      "quoteToken": "<string>",
      "pair": [
        {
          "tokenAddress": "<string>",
          "tokenName": "<string>",
          "tokenSymbol": "<string>",
          "tokenLogo": "<string>",
          "tokenDecimals": "<string>",
          "pairTokenType": "<string>",
          "liquidityUsd": 123
        }
      ]
    }
  ]
}
Endpoint cost: CUs. Learn more about compute units.

Authorizations

X-Api-Key
string
header
required

Path Parameters

network
enum<string>
required

The network to query

Available options:
mainnet,
devnet
address
string
required

The address to query

Example:

"So11111111111111111111111111111111111111112"

Query Parameters

cursor
string

The cursor to the next page

limit
number
default:50

The limit per page

Required range: 1 <= x <= 50

Response

200 - application/json
cursor
string | null
required
pageSize
number
required
page
number
required
pairs
object[]
required