Available since CLI v7.3.0.
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.
Prerequisites
Prerequisites
Before using
checkly checks, ensure you have:- Checkly CLI installed
- Valid Checkly account authentication (run
npx checkly loginif needed)
Usage
Terminal
Subcommands
| Subcommand | Description |
|---|---|
list | List all checks in your account. |
get | Get details of a specific check, including recent results. |
checkly checks list
List all checks in your account with optional filtering by name, tag, or check type.
Usage:
Terminal
| 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. |
List Options
Number of checks to return per page, between 1 and 100.Usage:
Terminal
Page number for paginated results.Usage:
Terminal
Filter checks by name using a case-insensitive search.Usage:
Terminal
Filter checks by tag. Specify multiple times to filter by multiple tags.Usage:
Terminal
Filter checks by type. Available types:
API, BROWSER, MULTI_STEP, HEARTBEAT, PLAYWRIGHT, TCP, DNS, ICMP, URL.Usage:Terminal
Hide check IDs in table output for a cleaner view.Usage:
Terminal
Set the output format. Use
json for programmatic access or md for markdown.Usage:Terminal
List Examples
Terminal
checkly checks get
Get details of a specific check, including recent results. Use --result to drill into a specific result or --error-group to view error details.
Usage:
Terminal
| Argument | Description |
|---|---|
ID | The ID of the check to retrieve. |
| 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. |
Get Options
Drill into a specific check result by its result ID. Shows detailed information including logs and timing data.Usage:
Terminal
Show full details for a specific error group, including error messages and affected results.Usage:
Terminal
Number of recent results to display.Usage:
Terminal
Cursor for paginating through results. The cursor value is provided in the output of a previous
checks get command.Usage:Terminal
Set the output format. Use
json for programmatic access or md for markdown.Usage:Terminal
Get Examples
Terminal
Related Commands
checkly status-pages- List and inspect status pagescheckly trigger- Trigger checks on-demandcheckly whoami- Display current account information