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

# Metrics Overview

> Aggregated latency metrics for all sources

Get aggregated latency metrics across all sources.

## Response

<ResponseField name="window_hours" type="number">
  Time window in hours (24)
</ResponseField>

<ResponseField name="count" type="object">
  Number of data points for source and internal metrics
</ResponseField>

<ResponseField name="source_latency_ms" type="object">
  Latency from source to Scrapest (P50, P95, P99)
</ResponseField>

<ResponseField name="internal_latency_ms" type="object">
  Internal processing latency (P50, P95, P99)
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X GET https://scrape.st/metrics
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "window_hours": 24,
    "count": {
      "source": 15420,
      "internal": 15380
    },
    "source_latency_ms": {
      "p50": 450,
      "p95": 1200,
      "p99": 2500
    },
    "internal_latency_ms": {
      "p50": 120,
      "p95": 350,
      "p99": 800
    }
  }
  ```
</ResponseExample>
