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

# Get response times

> Returns p95 response times overall and by probe location

Requires `monitors:read` permission. Uses the **Stats** rate limit bucket (30 req/min).

<ParamField path="monitor_id" type="string" required>
  Monitor ID (UUID)
</ParamField>

<ParamField query="range" type="string" default="24h">
  Time range. One of: `1h`, `6h`, `24h`, `7d`, `30d`, `90d`.
</ParamField>

Returns the aggregate p95 response time (averaged across regions) and a per-region breakdown sorted by p95 descending.

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "p95": 142.5,
      "by_location": [
        {
          "location": "us-east",
          "p95": 185.2,
          "checks": 1440
        },
        {
          "location": "eu-central",
          "p95": 99.8,
          "checks": 1440
        }
      ]
    }
  }
  ```
</ResponseExample>

<ResponseExample>
  ```json 200 No data theme={null}
  {
    "data": {
      "p95": null,
      "by_location": []
    }
  }
  ```
</ResponseExample>
