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

# Get usage

> Retrieve the current usage limit status for the organization. Today the only tracked usage dimension is the per-organization lead limit; additional dimensions may be added in the future under sibling keys.



## OpenAPI

````yaml get /usage
openapi: 3.0.1
info:
  title: AttentPublicAPI
  version: '2024-05-17T21:09:13Z'
servers:
  - url: https://api.attent.app/v1
security: []
paths:
  /usage:
    get:
      tags:
        - Usage
      description: >-
        Retrieve the current usage limit status for the organization. Today the
        only tracked usage dimension is the per-organization lead limit;
        additional dimensions may be added in the future under sibling keys.
      operationId: getUsageLimitStatus
      responses:
        '200':
          description: Successfully retrieved usage limit status
          content:
            application/json:
              schema:
                type: object
                properties:
                  leads:
                    type: object
                    description: Lead usage for the organization.
                    properties:
                      current:
                        type: integer
                        description: >-
                          The number of leads currently counted against the
                          limit.
                      limit:
                        type: integer
                        description: >-
                          The maximum number of leads allowed for the
                          organization.
                example:
                  leads:
                    current: 850
                    limit: 1000
        '401':
          $ref: '#/components/responses/401'
        '500':
          $ref: '#/components/responses/500'
      security:
        - api_key: []
components:
  responses:
    '401':
      description: Unauthorized - Invalid or missing API key
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
            example:
              message: Unauthorized
    '500':
      description: Internal Server Error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
            example:
              message: Internal Server Error
  securitySchemes:
    api_key:
      type: apiKey
      name: x-api-key
      in: header

````