> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# pairMetadata

> Get metadata, liquidity, volume, and price stats for a pair by ID.

### Returns

<ResponseField name="pairMetadata" type="PairMetadata!">
  Pair metadata including liquidity, volume, price, and token info.
</ResponseField>

### Arguments

<ResponseField name="pairId" type="String!" required>
  Pair ID (e.g. from listPairsForToken or listPairsWithMetadataForToken).
</ResponseField>

<ResponseField name="quoteToken" type="QuoteToken">
  Which token is quote (token0 or token1). See [QuoteToken](/api-reference/graphql/types/QuoteToken).
</ResponseField>

<ResponseField name="statsType" type="TokenPairStatisticsType">
  FILTERED or UNFILTERED. See [TokenPairStatisticsType](/api-reference/graphql/types/TokenPairStatisticsType).
</ResponseField>

### Example

```graphql theme={null}
{
  pairMetadata(pairId: "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640:1") {
    id
    pairAddress
    networkId
    exchangeId
    fee
    liquidity
    liquidityToken
    nonLiquidityToken
    statsType
    price
    priceNonQuoteToken
    priceChange5m
    priceChange1
    priceChange4
    priceChange12
    priceChange24
    volume5m
    volume1
    volume4
    volume12
    volume24
    highPrice24
    lowPrice24
    token0 {
      address
      name
      symbol
      networkId
      decimals
      price
      pooled
    }
    token1 {
      address
      name
      symbol
      networkId
      decimals
      price
      pooled
    }
  }
}
```

### Playground

<iframe src={`https://graphql.mobula.io/graphql?query=${encodeURIComponent('{ pairMetadata(pairId: "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640:1") { id pairAddress networkId exchangeId fee liquidity liquidityToken nonLiquidityToken statsType price priceNonQuoteToken priceChange5m priceChange1 priceChange4 priceChange12 priceChange24 volume5m volume1 volume4 volume12 volume24 highPrice24 lowPrice24 token0 { address name symbol networkId decimals price pooled } token1 { address name symbol networkId decimals price pooled } } }')}`} title="GraphQL Playground" style={{ width: '100%', minHeight: '600px', border: '1px solid var(--color-border)', borderRadius: '8px' }} />
