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

# getUsersAIUsage



## OpenAPI

````yaml /mintlify/docs/openapi.yaml get /getUsersAIUsage
openapi: 3.0.1
info:
  title: EzzyRest API
  version: 1.0.0
servers:
  - url: https://app.ezzydoc.com/EzzyService.svc/Rest/
    description: Production Server
security: []
paths:
  /getUsersAIUsage:
    get:
      tags:
        - EzzyRest
      summary: getUsersAIUsage
      operationId: getUsersAIUsage
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/AIUsageSS'
            application/json:
              schema:
                $ref: '#/components/schemas/AIUsageSS'
            text/json:
              schema:
                $ref: '#/components/schemas/AIUsageSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    AIUsageSS:
      type: object
      properties:
        unresolved:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````