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

# The OpenAPI 3.1 description of this deployment’s public API.

> Generated from the live route table and the same zod schemas the router validates against, so the published contract and the enforced one cannot drift. Free, and the only /v1 route that needs no credential.



## OpenAPI

````yaml /openapi.json get /v1/openapi.json
openapi: 3.1.0
info:
  title: Sigmora API
  version: 1.0.0
  description: >-
    The priced, versioned public API. Every call authenticates with a workspace
    API key (`Authorization: Bearer sk_live_…`), names the project it files its
    output under, and reports what it cost. `GET /v1/capabilities` answers what
    this deployment can serve right now and at what price; anything it reports
    as unavailable answers 503 `capability_unavailable` rather than 404.
servers:
  - url: https://api.sigmora.org
security:
  - bearerAuth: []
paths:
  /v1/openapi.json:
    get:
      summary: The OpenAPI 3.1 description of this deployment’s public API.
      description: >-
        Generated from the live route table and the same zod schemas the router
        validates against, so the published contract and the enforced one cannot
        drift. Free, and the only /v1 route that needs no credential.
      responses:
        '200':
          description: Success.
          content:
            application/json:
              schema:
                $schema: https://json-schema.org/draft/2020-12/schema
                type: object
                properties:
                  openapi:
                    type: string
                required:
                  - openapi
                additionalProperties: {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: A workspace API key.

````