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

# List CLI projects

> List project records reachable by the key for project linking.

List project records reachable by the key for project linking.

Use a developer access key. This endpoint is part of the [CLI API](/api-reference/cli/overview), with its own response format and rate limit.

No additional resource scope is required.

Returns a bare array of at most 200 records ordered by title. A pinned key only returns its pinned project. There is no pagination parameter; this route is not a general record listing.

## Response

**200** — Returns the resource under `data`. Example IDs and values are illustrative.

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "recordId": "project_example",
      "name": "Website"
    }
  ]
  ```
</ResponseExample>

<RequestExample>
  ```bash Request theme={null}
  curl --fail-with-body --silent --show-error \
    "https://api.getkato.io/cli/v1/projects" \
    -H "Authorization: Bearer $KATO_API_KEY"
  ```
</RequestExample>


## Related topics

- [CLI API](/api-reference/cli/overview.md)
- [All endpoints](/api-reference/endpoints.md)
- [List project environments](/api-reference/cli/environments.md)
- [Kato CLI](/documentation/cli.md)
- [Authentication and API conventions](/api-reference/authentication.md)
