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

# Get usage

> Get current usage statistics, word counts, and plan details.



## OpenAPI

````yaml /openapi.json get /usage
openapi: 3.1.0
info:
  title: OpenWhispr API
  version: 1.0.0
  description: Manage notes, folders, transcriptions, and usage programmatically.
servers:
  - url: https://api.openwhispr.com/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /usage:
    get:
      tags:
        - Usage
      summary: Get usage
      description: Get current usage statistics, word counts, and plan details.
      operationId: getUsage
      responses:
        '200':
          description: Usage statistics.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Usage'
components:
  schemas:
    Usage:
      type: object
      properties:
        words_used:
          type: integer
        words_remaining:
          type: integer
        limit:
          type: integer
        plan:
          type: string
          enum:
            - free
            - pro
            - business
        is_subscribed:
          type: boolean
        current_period_end:
          type: string
          format: date-time
        billing_interval:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key starting with owk_live_

````