> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lyceum.technology/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User Status

> Check user's authentication status and profile information.

``credit_balance`` reflects the **active org's** Croesus balance, not the
caller's personal user_credits row. Pass ``X-Org-Slug`` to scope it.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/external/user/status
openapi: 3.1.0
info:
  title: Lyceum Cloud API
  version: 0.1.0
servers:
  - url: https://api.lyceum.technology
    description: Production
security:
  - bearerAuth: []
paths:
  /api/v2/external/user/status:
    get:
      tags:
        - User Management
      summary: Get User Status
      description: >-
        Check user's authentication status and profile information.


        ``credit_balance`` reflects the **active org's** Croesus balance, not
        the

        caller's personal user_credits row. Pass ``X-Org-Slug`` to scope it.
      operationId: get_user_status_api_v2_external_user_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass an API key (prefixed `lk_`) or a JWT access token as a bearer
        token. Generate API keys in the dashboard at
        https://dashboard.lyceum.technology/api-keys.

````