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

# IndividualBarData

> A single OHLCV bar with trade counts, volume breakdowns, liquidity, and per-fee-category breakdowns.

### TypeScript shape

```ts theme={null}
interface IndividualBarData {
  o: number;
  h: number;
  l: number;
  c: number;
  v: number | null;
  t: number;
  volume: string;
  volumeNativeToken: string;
  buyers: number;
  buys: number;
  buyVolume: string;
  sellers: number;
  sells: number;
  sellVolume: string;
  liquidity: string;
  traders: number;
  transactions: number;
  poolFees: string | null;
  baseFees: string | null;
  priorityFees: string | null;
  builderTips: string | null;
  l1DataFees: string | null;
}
```

<ResponseField name="o" type="Float!">Open price.</ResponseField>
<ResponseField name="h" type="Float!">High price.</ResponseField>
<ResponseField name="l" type="Float!">Low price.</ResponseField>
<ResponseField name="c" type="Float!">Close price.</ResponseField>
<ResponseField name="v" type="Int">Trade count (legacy `v` field).</ResponseField>
<ResponseField name="t" type="Int!">Unix timestamp (seconds) of the bar's start.</ResponseField>
<ResponseField name="volume" type="String!">Total volume in the bar's denomination (full-precision decimal string).</ResponseField>
<ResponseField name="volumeNativeToken" type="String!">Total volume in the network's native token (full-precision decimal string).</ResponseField>
<ResponseField name="buyers" type="Int!">Distinct buyer wallets.</ResponseField>
<ResponseField name="buys" type="Int!">Buy transaction count.</ResponseField>
<ResponseField name="buyVolume" type="String!">Buy-side volume (full-precision decimal string).</ResponseField>
<ResponseField name="sellers" type="Int!">Distinct seller wallets.</ResponseField>
<ResponseField name="sells" type="Int!">Sell transaction count.</ResponseField>
<ResponseField name="sellVolume" type="String!">Sell-side volume (full-precision decimal string).</ResponseField>
<ResponseField name="liquidity" type="String!">Liquidity (USD or native token, depending on bar variant).</ResponseField>
<ResponseField name="traders" type="Int!">Distinct trader wallets (buyers + sellers, deduped).</ResponseField>
<ResponseField name="transactions" type="Int!">Total transaction count.</ResponseField>
<ResponseField name="poolFees" type="String">Total pool fees for the window.</ResponseField>
<ResponseField name="baseFees" type="String">Base fees for the window.</ResponseField>
<ResponseField name="priorityFees" type="String">Priority fees for the window.</ResponseField>
<ResponseField name="builderTips" type="String">Builder tips for the window.</ResponseField>
<ResponseField name="l1DataFees" type="String">L1 data fees for the window (rollups).</ResponseField>
