---
title: "Search users"
method: GET
path: "/users"
---

# Search users

`GET /users`

Search for users by email, name, or username

## Query parameters

- `query` string, required
- `includeArchived` boolean
- `cursor` string

## Response `200`

Ok

- PaginatedUsers
  - `nextCursor` string, nullable, required — Cursor for the next page
  - `hasNextPage` boolean, required — Whether there are more results
  - `total` number, double, required — Total count of users matching the query
  - `users` User[], required — List of users
    - `organizationRole` string — Role of the user in the organization
    - `isGuest` boolean — Whether the user is a guest
    - `archivedAt` string, date-time, nullable — Whether the user is archived
    - `displayName` string, required — Display name of the user
    - `email` string, required — Email address of the user
    - `id` string, required — User ID

## Other responses

- `401` — Invalid authentication
- `422` — Input validation error
- `429` — Rate limitation error
- `default` — Unexpected error

---

[API](https://skmtc.net/slite/apis/public-slite-api.md) · [All operations](https://skmtc.net/slite/apis/public-slite-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/slite/public-slite-api/versions/7cee1a5a5128/schema)
