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

# PooledTokenValues

> The pooled amounts of each token in a pair.

### TypeScript shape

```ts theme={null}
interface PooledTokenValues {
  token0: string | null;
  token1: string | null;
}
```

<ResponseField name="token0" type="String">
  Amount of token0 in the pool.
</ResponseField>

<ResponseField name="token1" type="String">
  Amount of token1 in the pool.
</ResponseField>
