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

# Check User Limits

> Check current usage limits and remaining operations

Returns real-time usage information with reset date



## OpenAPI

````yaml /openapi.json get /v1/users/me/limits
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /v1/users/me/limits:
    get:
      tags:
        - users
      summary: Check User Limits
      description: |-
        Check current usage limits and remaining operations

        Returns real-time usage information with reset date
      operationId: check_user_limits_v1_users_me_limits_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````