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

# Network stats

> Settlements, volume and quote latency over the last 24 hours.

<ResponseField name="settled" type="number">Settlements in the window.</ResponseField>
<ResponseField name="failed" type="number">Executions that failed in the window.</ResponseField>
<ResponseField name="volume" type="object[]">`{ token, amount }`: proceeds per buy token and sell amounts per sell token.</ResponseField>
<ResponseField name="medianMs" type="number | null">Median milliseconds from execution to settlement.</ResponseField>
<ResponseField name="quoteLatency" type="object">`{ count, p50, p95 }` in milliseconds, from request to firm quote.</ResponseField>
<ResponseField name="nodesOnline" type="number">Connected nodes in the `quoting` state with a fresh heartbeat.</ResponseField>
<ResponseField name="nodesTotal" type="number">Connected nodes in any state.</ResponseField>
<ResponseField name="windowHours" type="number">24.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "settled": 142, "failed": 3,
    "volume": [
      { "token": "0xe2387F04d3858e7Cb64Ef5Ed6617f9B2fcEEAfa2", "amount": "2410000000000" },
      { "token": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "amount": "1493210000" }
    ],
    "medianMs": 6120,
    "quoteLatency": { "count": 210, "p50": 812, "p95": 1610 },
    "nodesOnline": 3, "nodesTotal": 3, "windowHours": 24
  }
  ```
</ResponseExample>
