---
title: "Get current OAuth2 user"
method: GET
path: "/oauth2/@me"
tags: ["OAuth2"]
---

# Get current OAuth2 user

`GET /oauth2/@me`

Retrieves current authorization details for a valid OAuth2 bearer token. Includes OAuth2 metadata and user details when identify is present.

## Response `200`

Success

- OAuth2MeResponse
  - `application` object, required — The application associated with the token
    - `id` string, snowflake, required
    - `name` string, required — The name of the application
    - `icon` string, nullable, required — The icon hash of the application
    - `description` string, nullable, required — The description of the application
    - `bot_public` boolean, required — Whether the bot can be invited by anyone
    - `bot_require_code_grant` boolean, required — Whether the bot requires OAuth2 code grant
    - `flags` integer, required — The application flags
  - `scopes` string[], required — The list of granted OAuth2 scopes
  - `expires` string, required — The expiration timestamp of the token
  - `user` object — The user associated with the token
    - `id` string, snowflake, required
    - `username` string, required — The username of the user
    - `discriminator` string, required — The discriminator of the user
    - `global_name` string, nullable, required — The global display name of the user
    - `avatar` string, nullable, required — The avatar hash of the user
    - `avatar_color` integer, required
    - `bot` boolean — Whether the user is a bot
    - `system` boolean — Whether the user is a system user
    - `flags` integer, required — The public flags on the user account
    - `email` string, nullable — The email address of the user
    - `verified` boolean, nullable — Whether the user has verified their email

## Other responses

- `400` — Bad Request - The request was malformed or contained invalid data
- `401` — Unauthorized - Authentication is required or the token is invalid
- `403` — Forbidden - You do not have permission to perform this action
- `429` — Too Many Requests - You are being rate limited
- `500` — Internal Server Error - An unexpected error occurred

## Changes

> 19 revisions in range; 1 not diffed.

- **2026-09-18** `dd0ad4ea1c88` — 6 breaking, 6 info
  - the response property `application/description` became nullable for the status `200`
  - the response property `application/icon` became nullable for the status `200`
  - the response property `user/avatar` became nullable for the status `200`
  - the response property `user/email` became nullable for the status `200`
  - …8 more
- **2026-09-06** `a52a2cf49d9b` — 32 warning
  - added the new `IP_BAN_DECLINED` enum value to the `code` response property for the response status `400`
  - added the new `IP_BAN_DECLINED` enum value to the `code` response property for the response status `401`
  - added the new `IP_BAN_DECLINED` enum value to the `code` response property for the response status `403`
  - added the new `IP_BAN_DECLINED` enum value to the `code` response property for the response status `500`
  - …28 more
  - …this revision’s changelog is incomplete
- **2026-09-05** `4dbb738a3e22` — 4 info
  - removed the `NSFW_EMOJI_STICKER_BLOCKED` enum value from the `code` response property for the response status `400`
  - removed the `NSFW_EMOJI_STICKER_BLOCKED` enum value from the `code` response property for the response status `401`
  - removed the `NSFW_EMOJI_STICKER_BLOCKED` enum value from the `code` response property for the response status `403`
  - removed the `NSFW_EMOJI_STICKER_BLOCKED` enum value from the `code` response property for the response status `500`
- …earlier changes not shown

[Full history](https://skmtc.dev/fluxer/apis/fluxer-api/changes/oauth2/@me/get.md)

---

[API](https://skmtc.dev/fluxer/apis/fluxer-api.md) · [All operations](https://skmtc.dev/fluxer/apis/fluxer-api/llms.txt) · [OpenAPI document](https://skmtc.dev/fluxer/apis/fluxer-api/revisions/d15f842dd5f1?raw)
