> ## 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.

# Inspect Raycast identity

> Inspect the authorized workspace, member, token expiry, and advertised capabilities.

Inspect the authorized workspace, member, token expiry, and advertised capabilities.

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

No additional resource scope is required.

This response has no `data` wrapper. Membership is rechecked for every Raycast API request. Capabilities describe the integration’s surface; use each endpoint’s actual parameter names.

## Response

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "workspace": {
      "id": "workspace_example",
      "name": "Northlane",
      "slug": "northlane",
      "plan": "pro"
    },
    "member": {
      "authUserId": "user_example",
      "name": "Example member",
      "email": "member@example.com",
      "role": "member"
    },
    "expiresAt": "2026-09-07T13:00:00.000Z",
    "capabilities": {
      "search": [
        "tasks",
        "records",
        "meetings"
      ],
      "taskCreate": true,
      "taskUpdate": [
        "title",
        "description",
        "status",
        "priority",
        "dueDate",
        "estimate",
        "assignees",
        "linkedRecords",
        "linkedMeetings",
        "section"
      ],
      "taskDetails": true,
      "commentCreate": [
        "task",
        "record",
        "meeting"
      ],
      "activityRead": true,
      "notifications": [
        "read",
        "markRead",
        "dismiss"
      ],
      "dailyBrief": true,
      "recordWrite": false,
      "meetingWrite": false
    }
  }
  ```
</ResponseExample>

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


## Related topics

- [All endpoints](/api-reference/endpoints.md)
- [Raycast API](/api-reference/raycast/overview.md)
- [Raycast](/integrations/raycast.md)
- [Raycast response models](/api-reference/raycast/models.md)
- [Create a Raycast task](/api-reference/raycast/tasks-create.md)
