> ## 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.

# getDetailedPairsStats

> Get windowed stats for multiple pairs in one request.

### Returns

<ResponseField name="getDetailedPairsStats" type="[DetailedPairStats!]!">
  One [DetailedPairStats](/api-reference/graphql/types/DetailedPairStats) per input; order matches input order.
</ResponseField>

### Arguments

<ResponseField name="input" type="[GetDetailedPairsStatsInput!]!" required>
  Array of pair stat requests. Each element: see [GetDetailedPairsStatsInput](/api-reference/graphql/types/GetDetailedPairsStatsInput).
</ResponseField>

### Example

```graphql theme={null}
{
  getDetailedPairsStats(
    input: [
      {
        pairAddress: "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640"
        networkId: 1
        tokenOfInterest: token0
        durations: [hour1, day1]
      },
      {
        pairAddress: "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc"
        networkId: 1
        tokenOfInterest: token0
        durations: [hour1, day1]
      }
    ]
  ) {
    pairAddress
    networkId
    tokenOfInterest
    stats_hour1 {
      statsUsd {
        volume {
          currentValue
          change
        }
      }
      statsNonCurrency {
        transactions {
          currentValue
          change
        }
      }
    }
  }
}
```

### Playground

<iframe src={`https://graphql.mobula.io/graphql?query=${encodeURIComponent('{ getDetailedPairsStats(input: [{pairAddress: "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", networkId: 1, tokenOfInterest: token0, durations: [hour1, day1]}, {pairAddress: "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", networkId: 1, tokenOfInterest: token0, durations: [hour1, day1]}]) { pairAddress networkId tokenOfInterest stats_hour1 { statsUsd { volume { currentValue change } } statsNonCurrency { transactions { currentValue change } } } } }')}`} title="GraphQL Playground" style={{ width: '100%', minHeight: '600px', border: '1px solid var(--color-border)', borderRadius: '8px' }} />
