API ReferenceToken APIGet Pairs & LiquidityGet Token Pair StatsGet Token Pair Stats Mainnet OnlyGEThttps://solana-gateway.moralis.io/token/:network/pairs/:pairAddress/statsGets the stats for a specific pair addressLooking for token pair stats on EVM?Access token pair stats on EVM using our API.Explore EVM APINoteThe data is updated every 30 seconds to ensure you have access to near real-time information about price changes, liquidity, volume, and trading activity.PATH PARAMSnetworkstringrequiredThe network to querypairAddressstringrequiredThe address of the pair to queryResponses200400Bad Request404Not Found429Too Many Requests500Internal Server ErrorAPI KEYTest Live APIcURLNode.jsPythonGoPHPcurl --request GET \ --url 'https://solana-gateway.moralis.io/token/mainnet/pairs/Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE/stats' \ --header 'accept: application/json' \ --header 'X-API-Key: YOUR_API_KEY' // Node.js v18+ has native fetch support// No additional dependencies requiredconst options = { method: 'GET', headers: { accept: 'application/json', 'X-API-Key': 'YOUR_API_KEY' },};fetch('https://solana-gateway.moralis.io/token/mainnet/pairs/Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE/stats', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));# Dependencies to install:# $ python -m pip install requestsimport requestsurl = "https://solana-gateway.moralis.io/token/mainnet/pairs/Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE/stats"headers = { "Accept": "application/json", "X-API-Key": "YOUR_API_KEY"}response = requests.request("GET", url, headers=headers)print(response.text)package mainimport ( "fmt" "net/http" "io")func main() { url := "https://solana-gateway.moralis.io/token/mainnet/pairs/Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE/stats" req, _ := http.NewRequest("GET", url, payload) req.Header.Add("Accept", "application/json") req.Header.Add("X-API-Key", "YOUR_API_KEY") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body))}<?php// Dependencies to install:// $ composer require guzzlehttp/guzzlerequire_once('vendor/autoload.php');$client = new \GuzzleHttp\Client();$response = $client->request('GET', 'https://solana-gateway.moralis.io/token/mainnet/pairs/Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE/stats', [ 'headers' => [ 'Accept' => 'application/json', 'X-API-Key' => 'YOUR_API_KEY', ],]);echo $response->getBody();Response Example200 { "tokenAddress": "", "tokenName": "", "tokenSymbol": "", "tokenLogo": "", "pairCreated": "", "pairLabel": "", "pairAddress": "", "exchange": "", "exchangeAddress": "", "exchangeLogo": "", "exchangeUrl": "", "currentUsdPrice": "", "currentNativePrice": "", "totalLiquidityUsd": "", "pricePercentChange": "", "liquidityPercentChange": "", "buys": "", "sells": "", "totalVolume": "", "buyVolume": "", "sellVolume": "", "buyers": "", "sellers": ""}