📄 claude/api/admin-api/users/get-user

File: get-user.md | Updated: 11/15/2025

Source: https://docs.claude.com/en/api/admin-api/users/get-user

Agent Skills are now available! Learn more about extending Claude's capabilities with Agent Skills .

Claude Docs home pagelight logodark logo

US

English

Search...

Ctrl K

Search...

Navigation

Organization Member Management

Get User

Home Developer Guide API Reference Model Context Protocol (MCP) Resources Release Notes

cURL

cURL

Copy

curl "https://api.anthropic.com/v1/organizations/users/user_01WCz1FkmYMm4gnmykNKUu3Q" \
  --header "anthropic-version: 2023-06-01" \
  --header "content-type: application/json" \
  --header "x-api-key: $ANTHROPIC_ADMIN_KEY"

200

4XX

Copy

{
  "added_at": "2024-10-30T23:58:27.427722Z",
  "email": "user@emaildomain.com",
  "id": "user_01WCz1FkmYMm4gnmykNKUu3Q",
  "name": "Jane Doe",
  "role": "user",
  "type": "user"
}

GET

/

v1

/

organizations

/

users

/

{user_id}

cURL

cURL

Copy

curl "https://api.anthropic.com/v1/organizations/users/user_01WCz1FkmYMm4gnmykNKUu3Q" \
  --header "anthropic-version: 2023-06-01" \
  --header "content-type: application/json" \
  --header "x-api-key: $ANTHROPIC_ADMIN_KEY"

200

4XX

Copy

{
  "added_at": "2024-10-30T23:58:27.427722Z",
  "email": "user@emaildomain.com",
  "id": "user_01WCz1FkmYMm4gnmykNKUu3Q",
  "name": "Jane Doe",
  "role": "user",
  "type": "user"
}

Headers

x-api-key

string

required

Your unique Admin API key for authentication.

This key is required in the header of all Admin API requests, to authenticate your account and access Anthropic's services. Get your Admin API key through the Console .

anthropic-version

string

required

The version of the Claude API you want to use.

Read more about versioning and our version history here .

Path Parameters

user_id

string

required

ID of the User.

Response

200

application/json

Successful Response

added_at

string<date-time>

required

RFC 3339 datetime string indicating when the User joined the Organization.

Examples:

"2024-10-30T23:58:27.427722Z"

email

string

required

Email of the User.

Examples:

"user@emaildomain.com"

id

string

required

ID of the User.

Examples:

"user_01WCz1FkmYMm4gnmykNKUu3Q"

name

string

required

Name of the User.

Examples:

"Jane Doe"

role

enum<string>

required

Organization role of the User.

Available options:

user,

developer,

billing,

admin,

claude_code_user

type

enum<string>

default:user

required

Object type.

For Users, this is always "user".

Available options:

| Title | Const | | --- | --- | | Type | user |

Was this page helpful?

YesNo

Get Organization Info List Users

Assistant

Responses are generated using AI and may contain mistakes.