Skip to main content
GET
Get OAuth user information

Authorizations

Authorization
string
header
required

Access token for user-context authentication. Send it in the Authorization: Bearer <jwt> header. Use the token your OAuth client app obtained via the Authorization Code + PKCE flow.

Headers

Accept-Language
string

Supported response locales: ko, en, ja, zh-CN, zh-TW, es, fr, de, pt, th, vi. Default is ko.

Example:

"ko"

Response

Success. Optional claims that are not authorized or unavailable are omitted.

User information compatible with the OIDC Standard Claims shape. Claims that are unauthorized or unavailable are omitted.

sub
string
required

Immutable external user identifier shared across the Open API service

Example:

"OA-0123456789abcdef0123456789abcdef"

name
string | null

Display name (profile scope)

Example:

"Rocketpunch"

preferred_username
string

Profile permalink (profile scope)

Example:

"rocketpunch"

picture
string | null

Absolute profile image URL (profile scope)

Example:

"https://image.rocketpunch.com/user/123/profile.png"

email
string<email> | null

Email address (included only with the additional email scope)

Example:

"user@example.com"