---
title: "List Users"
method: GET
path: "/organizations/users"
tags: ["Organizations"]
---

# List Users

`GET /organizations/users`

Lists users in the organization, ordered by when they joined (newest first)

## Query parameters

- `limit` integer
- `starting_after` string
- `ending_before` string
- `q` string

## Headers

- `Cartesia-Version` '2026-03-01', date, required

## Response `200`

List Users

- object
  - `data` OrganizationUser[], required — The requested page of results
    - `created_at` string, date-time, required — When the user joined the organization
    - `email` string, email, nullable, required — Primary email address of the user, if available
    - `id` string, required — Stable identifier for the user. Safe to pass to [Get User](/api-reference/organizations/get-user) and [Remove User](/api-reference/organizations/remove-user).
    - `image_url` string, nullable, required — Profile image URL for the user, if available
    - `name` string, nullable, required — Full name of the user, if available
    - `role` 'admin' | 'member', required — Role of a user in the organization
  - `has_more` boolean, required — Whether more results are available after this page
  - `next_page` string, nullable — An ID that can be passed as `starting_after` or `ending_before` to get the next page of data

## Other responses

- `400` — Invalid request
- `500` — Unexpected error

---

[API](https://skmtc.net/cartesia/apis/cartesia-api.md) · [All operations](https://skmtc.net/cartesia/apis/cartesia-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cartesia/cartesia-api/revisions/8910812440d3/schema)
