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