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

# Get Usage

> Get your current billing period usage, plan details, and remaining quota.



## OpenAPI

````yaml GET /v1/usage
openapi: 3.0.3
info:
  title: MediAPI
  description: >-
    Media processing API — video, audio, image, and document transformations via
    simple REST calls.
  version: 1.0.0
servers:
  - url: https://api.ringbee.dev
    description: Production
security:
  - apiKey: []
paths:
  /v1/usage:
    get:
      tags:
        - Account
      summary: Get usage stats
      description: >-
        Get your current billing period usage, plan details, and remaining
        quota.
      operationId: getUsage
      responses:
        '200':
          description: Usage summary
          content:
            application/json:
              schema:
                type: object
                properties:
                  plan:
                    type: string
                    example: pro
                  gb_used:
                    type: number
                    example: 5.234
                  gb_included:
                    type: number
                    example: 25
                  gb_remaining:
                    type: number
                    example: 19.766
                  total_jobs:
                    type: integer
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key

````