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

# Get User

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

Get details for a specific user in an organization.

Returns detailed information about a user within the specified organization.
The requesting user must be a member of the organization to access this endpoint.

Rate limit: 60 requests per 30 seconds.

## Path parameters

- `org_id` integer, required
- `user_id` integer, required

## Headers

- `authorization` unknown

## Response `200`

Successful Response

- UserResponse — Represents a user in API responses
  - `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)

## Other responses

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

## Changes

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

[Change history](https://skmtc.dev/codegen-sh/apis/developer-api/changes/v1/organizations/:org_id/users/:user_id/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)
