GET
/
user
/
{id}
{
  "id": "78c30460ebbbdb349567a39a10a2c845",
  "name": "John Doe",
  "email": "john.doe@example.com",
  "image": "https://example.com/image.png",
  "role": "admin",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Better-Auth Session
string
cookie
required

Path Parameters

id
string
required

Response

200
application/json
User retrieved successfully
id
string

The unique identifier for the user

Example:

"78c30460ebbbdb349567a39a10a2c845"

name
string

The name of the user

Example:

"John Doe"

email
string

The email of the user

Example:

"john.doe@example.com"

image
string

The image of the user (can be a URL or a file as a base64 string)

Example:

"https://example.com/image.png"

role
string

The role of the user (admin, user, etc.)

Example:

"admin"

createdAt
string

The date and time the user was created

updatedAt
string

The date and time the user was last updated