---
title: "Get Users"
method: GET
path: "/v1/organizations/{org_id}/users"
tags: ["users", "users", "users"]
---

# Get Users

`GET /v1/organizations/{org_id}/users`

Get users for the specified organization.

Returns a paginated list of all users that belong to the specified organization.
Results include user details such as name, email, GitHub username, and avatar.
Use pagination parameters to control the number of results returned.

Rate limit: 60 requests per 30 seconds.

## Path parameters

- `org_id` integer, required

## Query parameters

- `skip` integer
- `limit` integer

## Headers

- `authorization` unknown

## Response `200`

Successful Response

- PageUserResponse
  - `items` UserResponse[], required
    - `id` integer, required — Unique user ID
    - `email` string, nullable — User's email address
    - `github_user_id` string, required — GitHub user ID
    - `github_username` string, required — GitHub username
    - `avatar_url` string, nullable — URL to user's avatar image
    - `full_name` string, nullable — User's full name
    - `role` string, nullable — User's role in the organization (ADMIN, MANAGER, MEMBER)
    - `is_admin` boolean, nullable — Whether the user is an admin (deprecated, use role instead)
  - `total` integer, required
  - `page` integer, required
  - `size` integer, required
  - `pages` integer, required

## Other responses

- `403` — Forbidden
- `422` — Validation Error
- `429` — Too Many Requests

## Changes

- **2025-08-15** `69bfde65bf75` — 4 breaking, 2 info
  - for the `path` request parameter `org_id`, the type/format was changed from `string`/`` to `integer`/``
  - the response property `items/items/avatar_url` became optional for the status `200`
  - the response property `items/items/email` became optional for the status `200`
  - the response property `items/items/full_name` became optional for the status `200`
  - …2 more

[Change history](https://skmtc.dev/codegen-sh/apis/developer-api/changes/v1/organizations/:org_id/users/get.md)

---

[API](https://skmtc.dev/codegen-sh/apis/developer-api.md) · [All operations](https://skmtc.dev/codegen-sh/apis/developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/codegen-sh/developer-api/revisions/e68a3133f727/schema)
