curl --request GET \
--url https://api.example.com/api/user/me{
"id": 123,
"email": "<string>",
"language": "<string>"
}Retrieve the authenticated user’s profile information
curl --request GET \
--url https://api.example.com/api/user/me{
"id": 123,
"email": "<string>",
"language": "<string>"
}curl -X GET https://api.example.com/api/user/me \
-H "Authorization: Bearer YOUR_TOKEN_HERE"
{
"id": 123,
"email": "[email protected]",
"language": "pt-BR"
}
{
"error": "Unauthorized",
"message": "Invalid or missing authentication token"
}
{
"error": "Not Found",
"message": "User not found"
}
/api/ai/key-status instead)