Get User
Retrieve a single user by ID
GET
Returns detailed information about a specific user.
Path Parameters
idstringrequiredThe user ID.
curl -X GET "https://api.example.com/v1/users/user_123" \
-H "Authorization: Bearer $TOKEN"{
"data": {
"id": "user_123",
"email": "jane@example.com",
"displayName": "Jane Doe",
"avatarUrl": "https://cdn.example.com/avatars/jane.png",
"createdAt": "2024-01-15T10:30:00Z"
}
}