Skip to main content
Retrieve information about the authenticated user. Endpoint: GET /user/info Request
HeaderDescription
Authorization: Bearer {token}User’s session token acquired from authentication
cURL Example
curl -X GET "https://api.circuit.org/v1/user/info"    -H "Authorization: Bearer user_session_token"
Response
Success
{
  username: string;
  email: string | null;
  isEmailVerified: boolean;
  referrerUsername: string | null;
}