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

# Get market metrics

> Liquidity and volume per named outcome.

Indexer `outcome` table first. RPC fallback has `volumeCollateral: null`.

```ts theme={null}
const { source, rows } = await market.metrics()
```

```ts theme={null}
// returns OutcomeMetrics
Promise<{
  source: "indexer" | "rpc"
  rows: Array<{
    index: number
    liquidity: bigint | null
    volumeCollateral: bigint | null
  }>
}>
```

## Next

[Seed a market](/market/seed)
