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

# Get billing catalog



## OpenAPI

````yaml api-reference/openapi.account.json GET /billing/catalog
openapi: 3.1.0
info:
  title: Aether Account & Integrations API
  version: 0.1.0
  description: >-
    Account, billing, and integration-management endpoints used by the Aether
    web app and CLI. Root-mounted; NOT part of the versioned /v1 contract.
servers:
  - url: https://api.runaether.dev
security:
  - bearerAuth: []
paths:
  /billing/catalog:
    get:
      tags:
        - billing
      summary: Get billing catalog
      operationId: getBillingCatalog
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BillingCatalogResponse'
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Server Error
components:
  schemas:
    BillingCatalogResponse:
      additionalProperties: false
      properties:
        tiers:
          items:
            $ref: '#/components/schemas/BillingCatalogTier'
          type: array
        vm_sizes:
          items:
            $ref: '#/components/schemas/BillingCatalogVMSize'
          type: array
      required:
        - tiers
        - vm_sizes
      type: object
    ErrorResponse:
      additionalProperties: false
      properties:
        code:
          type: string
        error:
          minLength: 1
          type: string
      required:
        - error
      type: object
    BillingCatalogTier:
      additionalProperties: false
      properties:
        allowed_vm_sizes:
          items:
            type: string
          type: array
        credits_per_month:
          format: int64
          type: integer
        label:
          type: string
        monthly_price_usd:
          format: double
          type: number
        tier:
          enum:
            - free
            - starter
            - pro
            - max
          type: string
        warm_slots:
          format: int64
          type: integer
      required:
        - tier
        - label
        - monthly_price_usd
        - credits_per_month
        - warm_slots
        - allowed_vm_sizes
      type: object
    BillingCatalogVMSize:
      additionalProperties: false
      properties:
        cpu_kind:
          type: string
        credits_per_hour:
          format: double
          type: number
        label:
          type: string
        memory_mb:
          format: int64
          type: integer
        size:
          type: string
        vcpu:
          format: int64
          type: integer
        volume_size_gb:
          format: int64
          type: integer
      required:
        - size
        - label
        - vcpu
        - cpu_kind
        - memory_mb
        - volume_size_gb
        - credits_per_hour
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````