v1

latestOpenAPI 3.0.0MIT (code only)2026-07-1783284693.9 KB
Auth

Get Authenticated User

Returns the currently authenticated user. Requires a valid Sanctum bearer token.

get/api/user

Response

The authenticated user

idinteger
namestring
emailstring email
email_verified_atstring date-time nullable
is_adminboolean
language_idinteger nullable
created_atstring date-time nullable
updated_atstring date-time nullable

Example response

{
  "id": 1,
  "name": "John Doe",
  "email": "john@example.com",
  "language_id": 1
}