Documentation Index
Fetch the complete documentation index at: https://checkly-422f444a-sync-playwright-reporter-changelog-v1-12-0.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Available since CLI v7.7.0.
checkly account command lets you view account-level information directly from the terminal. Use it to check which features are available on your plan, inspect metered limits, discover available check locations, and list account members or pending invites.
Prerequisites
Prerequisites
Before using
checkly account, ensure you have:- Checkly CLI installed
- Valid Checkly account authentication (run
npx checkly loginif needed)
Usage
Terminal
Subcommands
| Subcommand | Description |
|---|---|
members | List account members and pending invites. |
plan | Show your account plan, entitlements, and feature limits. |
checkly account members
The
checkly account members command is only available since CLI v7.15.0.Terminal
| Option | Required | Description |
|---|---|---|
--search, -s | - | Search members and invites by name or email. |
--type | - | Filter by item type: member or invite. |
--role | - | Filter by member or invite role: owner, admin, read_write, read_run, or read_only. |
--status | - | Filter by member or invite status: active, pending, or expired. |
--limit, -l | - | Number of account members to return (1-100). Enables cursor pagination. |
--next-id | - | Cursor for the next page. Requires --limit. |
--hide-id | - | Hide member and invite IDs in formatted output. |
--output, -o | - | Output format: table, json, or md. Default: table. |
Members Options
Search members and invites by name or email.Usage:
Terminal
Filter the list by item type. Use
member for active account members, or invite for pending and expired invites.Usage:Terminal
Filter members and invites by role. Available values:
owner, admin, read_write, read_run, read_only.Usage:Terminal
Filter members and invites by status. Available values:
active, pending, expired.Usage:Terminal
Set the number of account members to return, between 1 and 100. When you set
--limit, the command prints pagination information and a next-page command when more results are available.Usage:Terminal
Cursor for paginating through results. Use the
nextId value from the JSON response, or the next-page command shown in table output. You must use --limit with --next-id.Usage:Terminal
Hide member and invite IDs in formatted output. JSON output always includes the response fields returned by the API.Usage:
Terminal
Set the output format. Use
json for programmatic access or md for markdown.Usage:Terminal
Members Examples
Terminal
Members JSON Response
The--output=json format returns a structured response with a members array and cursor pagination fields.
members[].type—memberfor active account members orinvitefor account invites.members[].role— account role, such asOWNER,ADMIN,READ_WRITE,READ_RUN, orREAD_ONLY.members[].status—ACTIVEfor members, orPENDING/EXPIREDfor invites.length— number of items returned in the current response.nextId— cursor for the next page. Use it with--limitand--next-id.
checkly account plan
Show your account plan, entitlements, and feature limits. The default view displays a summary of metered entitlements with their limits. Use --output=json for the full response including locations, feature flags, and upgrade URLs.
Usage:
Terminal
| Argument | Description |
|---|---|
key | Entitlement key to look up (e.g. BROWSER_CHECKS). Shows a detail view for that entitlement. |
| Option | Required | Description |
|---|---|---|
--type, -t | - | Filter entitlements by type: metered or flag. |
--search, -s | - | Search entitlements by name or description. |
--disabled | - | Show only entitlements not included in your plan. |
--output, -o | - | Output format: table, json, or md. Default: table. |
Plan Options
Pass an entitlement key as a positional argument to see a detail view for that specific entitlement, including its type, status, limit, and upgrade URL if applicable.Usage:
Terminal
Filter entitlements by type. Use
metered to see entitlements with numeric limits, or flag to see boolean feature flags.Usage:Terminal
Search entitlements by name or description using a case-insensitive match.Usage:
Terminal
Show only entitlements that are not included in your current plan. Each disabled entitlement includes the required plan and an upgrade URL.Usage:
Terminal
Set the output format. Use
json for the full response including locations, all entitlements, and upgrade URLs. Use md for markdown.Usage:Terminal
Plan Examples
Terminal
JSON Response
The--output=json format returns a structured response useful for programmatic access and AI agents.
locations.all— filter to entries whereavailableistrueto get valid locations for your checks. RespectmaxPerCheckas the upper bound per check.entitlements— metered entitlements include aquantitylimit. Disabled entitlements includerequiredPlanandupgradeUrl.
Related Commands
checkly skills manage- Account management context for AI agentscheckly whoami- Display current account informationcheckly switch- Switch between Checkly accounts