Skip to main content
GET
/
token
/
{network}
/
pairs
/
{pairAddress}
/
stats
Get stats for a pair address
curl --request GET \
  --url https://solana-gateway.moralis.io/token/{network}/pairs/{pairAddress}/stats \
  --header 'X-Api-Key: <api-key>'
{
  "tokenAddress": "<string>",
  "tokenName": "<string>",
  "tokenSymbol": "<string>",
  "tokenLogo": "<string>",
  "pairCreated": "<string>",
  "pairLabel": "<string>",
  "pairAddress": "<string>",
  "exchange": "<string>",
  "exchangeAddress": "<string>",
  "exchangeLogo": "<string>",
  "exchangeUrl": "<string>",
  "currentUsdPrice": "<string>",
  "currentNativePrice": "<string>",
  "totalLiquidityUsd": "<string>",
  "pricePercentChange": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 123
  },
  "liquidityPercentChange": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 123
  },
  "buys": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 123
  },
  "sells": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 123
  },
  "totalVolume": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 123
  },
  "buyVolume": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 123
  },
  "sellVolume": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 123
  },
  "buyers": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 123
  },
  "sellers": {
    "5min": 123,
    "1h": 123,
    "4h": 123,
    "24h": 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
pairAddress
string
required

The address of the pair to query

Example:

"Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE"

Response

200 - application/json
tokenAddress
string
required

The token address

tokenName
string | null
required

The token name

tokenSymbol
string | null
required

The token symbol

tokenLogo
string | null
required

The token logo

pairCreated
string | null
required

The timestamp when pair is created

pairLabel
string | null
required

The pair label

pairAddress
string
required

The pair address

exchange
string | null
required

The exchange name

exchangeAddress
string
required

The exchange address

exchangeLogo
string | null
required

The exchange logo

exchangeUrl
string | null
required

The exchange url

currentUsdPrice
string | null
required

The current usd price of the token

currentNativePrice
string | null
required

The current native price of the token

totalLiquidityUsd
string | null
required

The total liquidity of the pair in USD

pricePercentChange
object
required

The price percent change stats

liquidityPercentChange
object
required

The liquidity change stats

buys
object
required

The total buys stats

sells
object
required

The total sells stats

totalVolume
object
required

The total volume stats

buyVolume
object
required

The total buy volume stats

sellVolume
object
required

The total sell volume stats

buyers
object
required

The total unique buyers stats

sellers
object
required

The total unique sellers stats