> ## Documentation Index
> Fetch the complete documentation index at: https://superwhisper-docs-cloud-model-rate-limits.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get stat dimensions

> Returns the distinct values available for filtering: voice models, language models, and app names.



## OpenAPI

````yaml https://api.superwhisper.com/api/v1/openapi.json get /api/v1/stats/dimensions
openapi: 3.1.0
info:
  title: SuperWhisper API
  version: 1.0.0
  description: Public API for accessing SuperWhisper organization data.
servers:
  - url: https://api.superwhisper.com
    description: Production
security:
  - bearerAuth: []
paths:
  /api/v1/stats/dimensions:
    get:
      tags:
        - Stats
      summary: Get stat dimensions
      description: >-
        Returns the distinct values available for filtering: voice models,
        language models, and app names.
      responses:
        '200':
          description: Available filter dimensions
          content:
            application/json:
              schema:
                type: object
                properties:
                  voice_models:
                    type: array
                    items:
                      type: string
                    description: Available voice model identifiers
                  language_models:
                    type: array
                    items:
                      type: string
                    description: Available language model identifiers
                  app_names:
                    type: array
                    items:
                      type: string
                    description: Application names seen in recordings
                required:
                  - voice_models
                  - language_models
                  - app_names
                $schema: http://json-schema.org/draft-07/schema#
        '401':
          description: Unauthorized — missing or invalid bearer token
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API access token (starts with sk-sw-)

````