Skip to main content
GET
/
v3
/
user
Get Current User
curl --request GET \
  --url https://app.plugchoice.com/api/v3/user \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "<string>",
  "id": 123,
  "name": "<string>",
  "email": "<string>",
  "avatar": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns the authenticated user’s account details.

Response

uuid
string
The unique UUID of the user.
id
integer
The numeric ID of the user.
name
string
The user’s full name.
email
string
The user’s email address.
avatar
string
Gravatar URL for the user’s avatar, based on their email address.
created_at
string
ISO 8601 timestamp of when the user was created.
updated_at
string
ISO 8601 timestamp of when the user was last updated.