---
title: "Get Current User Info"
method: GET
path: "/v1/users/me"
tags: ["users", "users", "users"]
---

# Get Current User Info

`GET /v1/users/me`

Get current user information from API token.

Returns detailed information about the user associated with the provided API token.
This is useful for applications that need to identify the current user from their API token.

Rate limit: 60 requests per 30 seconds.

## 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
- `422` — Validation Error
- `429` — Too Many Requests

## Changes

- **2025-08-15** `69bfde65bf75` — 3 breaking, 2 info
  - the response property `avatar_url` became optional for the status `200`
  - the response property `email` became optional for the status `200`
  - the response property `full_name` became optional for the status `200`
  - added the optional property `is_admin` to the response with the `200` status
  - …1 more
- **2025-06-13** `70e15e0c5ef2` — 1 info
  - endpoint added

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