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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Get monitor

> Retrieves one monitor with its complete query, evaluation, notification, and attached-notifier configuration.

`axiom.getMonitor` retrieves one monitor with its complete query, evaluation, notification, and attached-notifier configuration.

```ts automations/axiom-get-monitor.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { axiom } from "automate.ax/axiom"

export default automation("Get monitor", () => {
  onHttpRequest({ scope: "automation" })
  axiom.getMonitor({ monitorId: "monitor-id" })
})
```

## Input

`monitorId` is required and selects one Axiom monitor.

## Output

Returns the monitor's ID, name, type, query, evaluation cadence and range, plus configured thresholds, anomaly settings, notification behavior, pause state, notifier IDs, and audit metadata.

## Permission and failures

The API token needs the organization-level `monitors|read` capability. Axiom returns an error when the monitor does not exist or the token cannot access it.
