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

# Billing Catalog

> Aiven-style catalog: clouds → regions → plans/sizes (GCP labeled).



## OpenAPI

````yaml /openapi.json get /api/v1/billing/catalog
openapi: 3.1.0
info:
  title: SEAOTTER API
  description: >-
    SEAOTTER control plane API — managed Hermes Agent hosting. Authenticate with
    a Clerk session JWT (web) or an org-scoped API key (`Authorization: Bearer
    so_…` from POST /api/v1/api-keys). Public developer docs:
    https://docs.seaotter.dev
  version: 1.0.0
servers:
  - url: https://api.seaotter.dev
    description: Production
  - url: https://seaotter-api-bpenevambq-uc.a.run.app
    description: Production (Cloud Run URL)
  - url: http://localhost:8000
    description: Local development
security: []
tags:
  - name: agents
    description: Provision and operate Hermes agents
  - name: billing
    description: Stripe plans and subscriptions
  - name: users
    description: Current user and control-plane API keys
  - name: organizations
    description: Active organization context
  - name: audit
    description: Organization audit log (Enterprise)
  - name: health
    description: Liveness probes
paths:
  /api/v1/billing/catalog:
    get:
      tags:
        - billing
      summary: Billing Catalog
      description: 'Aiven-style catalog: clouds → regions → plans/sizes (GCP labeled).'
      operationId: billing_catalog_api_v1_billing_catalog_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Billing Catalog Api V1 Billing Catalog Get

````