Skip to content

OpenAPI Specification

The MaxConf API is built with FastAPI, which auto-generates an OpenAPI 3.0 specification from the source code. This serves as the machine-readable contract for all endpoints.

MethodURLWhen to use
Interactive Swagger UIhttp://localhost:7071/docsLocal development - try endpoints interactively
ReDochttp://localhost:7071/redocLocal development - read-only formatted view
Raw JSON (local)http://localhost:7071/openapi.jsonLocal development - raw spec for tooling
Published snapshot/openapi-spec.jsonReference - spec snapshot published with docs
Terminal window
# From the repository root
nx run pexip-sdk:serve

Then open http://localhost:7071/docs in your browser.

A static snapshot of the OpenAPI spec is published with this documentation site at /openapi-spec.json. This may lag behind the current source code - always prefer the local dev server for the latest spec.

The OpenAPI JSON can be imported into:

  • Postman - import as a collection for manual testing
  • Azure API Management - import to update API policies and gateway config
  • Code generators - generate client SDKs in any language (e.g., openapi-generator-cli)