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

# Get Tenant Usage Statistics

> Get Tenant Usage Statistics.



## OpenAPI

````yaml GET /reports/getStatistics
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /reports/getStatistics:
    get:
      tags:
        - Reports
      summary: Get tenant usage statistics for the authenticated tenant
      responses:
        '200':
          description: OK
          content:
            application/json:
              examples:
                OK:
                  value:
                    success: true
                    statusCode: 200
                    message: OK
                    data:
                      admins: 5
                      apiKeys: 12
                      categories: 8
                      subCategories: 21
                      languages: 2
                      forms: 3
                      submissions: 37
                      articles: 420
                      ai_tokens: 18450
                      s3: 100
                      limits: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
          content:
            application/json:
              examples:
                NotFound:
                  value:
                    success: false
                    statusCode: 404
                    message: No usage statistics found
                    data: null
        '500':
          description: Server error
          content:
            application/json:
              examples:
                ServerError:
                  value:
                    success: false
                    statusCode: 500
                    message: Failed to find usage statistics
                    data: null
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````