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

# Usage

> The caller org's Operator usage rows over the rolling 24h window (metered dimensions, priced where
the rate card prices them). Reads only — no browser provider required.



## OpenAPI

````yaml /schemas/operator.json get /v1/usage
openapi: 3.1.0
info:
  title: Omegas Operator API
  version: 0.1.0
  description: >-
    The public /v1 machine surface: cloud browser devices, tasks, live-view
    sessions, escalations, usage, webhook endpoints, and the audit trail.
    Generated from the same OpenAPI document the Rust API is checked against.
servers:
  - url: https://api.omegas.dev
    description: Production
security: []
paths:
  /v1/usage:
    get:
      tags:
        - Endpoints
      summary: Usage
      description: >-
        The caller org's Operator usage rows over the rolling 24h window
        (metered dimensions, priced where

        the rate card prices them). Reads only — no browser provider required.
      operationId: usage
      parameters:
        - name: product
          in: query
          description: >-
            Product to report usage for. Only `operator` is served on this
            surface.
          required: false
          schema:
            type:
              - string
              - 'null'
      responses:
        '200':
          description: Usage rows
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsageResponse'
        '400':
          description: invalid product
        '401':
          description: invalid_api_key
        '403':
          description: insufficient_scope or product_not_entitled
        '429':
          description: rate_limited
      security:
        - bearer_operator: []
components:
  schemas:
    UsageResponse:
      type: object
      description: 'The `/v1/usage` response: metered rows (not fixed scalars).'
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/UsageRowDto'
    UsageRowDto:
      type: object
      description: >-
        One metered usage dimension. `cost_micro` is omitted when the dimension
        is unpriced.
      required:
        - resource
        - kind
        - unit
        - quantity
        - window
      properties:
        cost_micro:
          type:
            - integer
            - 'null'
          format: int64
          description: >-
            Priced cost in micro-USD, present ONLY when the rate card prices
            `(resource, kind)`.
        kind:
          type: string
        quantity:
          type: integer
          format: int64
        resource:
          type: string
        unit:
          type: string
        window:
          type: string
          description: The rolling window the `quantity` covers, e.g. `"24h"`.
  securitySchemes:
    bearer_operator:
      type: http
      scheme: bearer
      bearerFormat: Opaque

````