| title | checkly checks |
|---|---|
| description | List and inspect checks in your Checkly account. |
| sidebarTitle | checkly checks |
Available since CLI v7.3.0.
The checkly checks command lets you list and inspect checks in your Checkly account directly from the terminal. You can filter, search, and drill into individual check details, recent results, and error groups.
- Checkly CLI installed
- Valid Checkly account authentication (run
npx checkly loginif needed)
For additional setup information, see CLI overview.
npx checkly checks <subcommand> [arguments] [options]| Subcommand | Description |
|---|---|
list |
List all checks in your account. |
get |
Get details of a specific check, including recent results. |
List all checks in your account with optional filtering by name, tag, or check type.
Usage:
npx checkly checks list [options]Options:
| Option | Description |
|---|---|
--limit, -l |
Number of checks to return (1-100). Default: 25. |
--page, -p |
Page number. Default: 1. |
--search, -s |
Filter checks by name (case-insensitive). |
--tag, -t |
Filter by tag. Can be specified multiple times. |
--type |
Filter by check type. |
--hide-id |
Hide check IDs in table output. |
--output, -o |
Output format: table, json, or md. Default: table. |
Number of checks to return per page, between 1 and 100.
Usage:
npx checkly checks list --limit=50
npx checkly checks list -l 10Page number for paginated results.
Usage:
npx checkly checks list --page=2
npx checkly checks list -p 3Filter checks by name using a case-insensitive search.
Usage:
npx checkly checks list --search="homepage"
npx checkly checks list -s "api"Filter checks by tag. Specify multiple times to filter by multiple tags.
Usage:
npx checkly checks list --tag=production
npx checkly checks list -t production -t criticalFilter checks by type. Available types: API, BROWSER, MULTI_STEP, HEARTBEAT, PLAYWRIGHT, TCP, DNS, ICMP, URL.
Usage:
npx checkly checks list --type=API
npx checkly checks list --type=BROWSERHide check IDs in table output for a cleaner view.
Usage:
npx checkly checks list --hide-idSet the output format. Use json for programmatic access or md for markdown.
Usage:
npx checkly checks list --output=json
npx checkly checks list -o md# List all checks with default settings
npx checkly checks list
# Search for checks by name
npx checkly checks list --search="homepage"
# Filter by tag and type
npx checkly checks list --tag=production --type=API
# Get results as JSON
npx checkly checks list --output=json
# Page through results
npx checkly checks list --limit=10 --page=2Get details of a specific check, including recent results. Use --result to drill into a specific result or --error-group to view error details.
Usage:
npx checkly checks get <id> [options]Arguments:
| Argument | Description |
|---|---|
ID |
The ID of the check to retrieve. |
Options:
| Option | Description |
|---|---|
--result, -r |
Show details for a specific result ID. |
--error-group, -e |
Show full details for a specific error group ID. |
--results-limit |
Number of recent results to show. Default: 10. |
--results-cursor |
Cursor for results pagination (from previous output). |
--output, -o |
Output format: detail, json, or md. Default: detail. |
Drill into a specific check result by its result ID. Shows detailed information including logs and timing data.
Usage:
npx checkly checks get <check-id> --result=<result-id>
npx checkly checks get <check-id> -r <result-id>Show full details for a specific error group, including error messages and affected results.
Usage:
npx checkly checks get <check-id> --error-group=<error-group-id>
npx checkly checks get <check-id> -e <error-group-id>Number of recent results to display.
Usage:
npx checkly checks get <check-id> --results-limit=20Cursor for paginating through results. The cursor value is provided in the output of a previous checks get command.
Usage:
npx checkly checks get <check-id> --results-cursor=<cursor>Set the output format. Use json for programmatic access or md for markdown.
Usage:
npx checkly checks get <check-id> --output=json
npx checkly checks get <check-id> -o md# View check details and recent results
npx checkly checks get 12345
# Drill into a specific result
npx checkly checks get 12345 --result=abc-123
# View an error group
npx checkly checks get 12345 --error-group=err-456
# Get check details as JSON
npx checkly checks get 12345 --output=json
# Show more results
npx checkly checks get 12345 --results-limit=25checkly status-pages- List and inspect status pagescheckly trigger- Trigger checks on-demandcheckly whoami- Display current account information