> ## 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 Raycast objects

> List active workspace objects with presentation metadata.

List active workspace objects with presentation metadata.

Use an OAuth access token issued to `kato-raycast`. Developer keys cannot call this endpoint. See [Raycast authentication](/api-reference/raycast/overview).

Required scopes: `objects:read`.

Unpaginated, ordered by configured position then name. This shape includes name, icon, color, and description; it differs from general developer object discovery.

## Response

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": "object_example",
        "name": "Clients",
        "singularName": "Client",
        "pluralName": "Clients",
        "slug": "clients",
        "icon": null,
        "color": null,
        "description": null
      }
    ]
  }
  ```
</ResponseExample>

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


## Related topics

- [All endpoints](/api-reference/endpoints.md)
- [List objects](/api-reference/objects/list.md)
- [List object fields](/api-reference/objects/fields.md)
- [List my Raycast tasks](/api-reference/raycast/tasks-list.md)
- [List Raycast task statuses](/api-reference/raycast/task-statuses.md)
