Get current user

GET/auth/me
Auth:Bearer

Response

id

uuid
email

email
name

string
created_at

datetime
Request
bash
curl -X GET "https://prodapi.phosra.com/api/v1/auth/me" \
  -H "Authorization: Bearer YOUR_API_KEY"
Response
json
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "email": "[email protected]",
  "name": "string",
  "created_at": "2025-01-15T09:30:00Z"
}