Get User

GET /api/users/{id}
Authentication
Bearer Token

Description

Retrieve a single user by ID.

Parameters

Path Parameters:

  • id (string, required) - The user ID

Query Parameters:

  • include (string, optional) - Include related data (profile, permissions)

Response

Returns a user object with basic information.

Example

curl -X GET https://api.example.com/users/user123 \
  -H "Authorization: Bearer YOUR_TOKEN"