---
title: "List users in the organization"
method: GET
path: "/admin/users"
tags: ["Users"]
---

# List users in the organization

`GET /admin/users`

List users in the caller's organization, optionally filtered by email address.

## Query parameters

- `email` string, email
- `limit` integer
- `paginationToken` string

## Headers

- `X-Pinecone-Api-Version` string, required

## Response `200`

A paginated list of users. Role bindings are not included; use `GET /admin/role-bindings` to list them.

- UserList — A paginated list of users in the organization.
  - `data` User[], required — The page of users.
    - `id` string, uuid, required — The unique ID of the user.
    - `email` string, email, required — The user's email address.
    - `name` string — The user's display name. Omitted from the response if the user has not set one.
  - `pagination` object, nullable — Pagination metadata for list responses. When `next` is present, pass it as `paginationToken` on the following request.
    - `next` string — Opaque cursor for the next page. Do not parse or construct. Invalid or expired tokens return `400`.

## Other responses

- `400` — Bad request. The request body included invalid request parameters.
- `401` — Unauthorized. Possible causes: Invalid API key.
- `403` — Forbidden
- `500` — Internal server error.
- `4XX` — Unexpected error on request.

---

[API](https://skmtc.dev/pinecone/apis/pinecone-admin-api.md) · [All operations](https://skmtc.dev/pinecone/apis/pinecone-admin-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pinecone/pinecone-admin-api/revisions/8210e9d414c2/schema)
