Quickback Docs

Endpoints

Cloud compiler API endpoints, request format, and response details.

The cloud compiler API is hosted at https://compiler.quickback.dev.

Public (No Auth)

EndpointMethodDescription
/healthGETHealth check
/templatesGETList available templates

Authenticated

EndpointMethodDescription
/compilePOSTCompile definitions into backend files

The /compile endpoint requires either a session token (from quickback login) or an API key (via QUICKBACK_API_KEY header). See Authentication for details.

Environment Variables

VariableDescription
QUICKBACK_API_KEYAPI key for authentication (alternative to quickback login)
QUICKBACK_API_URLOverride compiler API URL (default: https://compiler.quickback.dev)

Custom Compiler URL

Point the CLI to a different compiler (local or custom):

QUICKBACK_API_URL=http://localhost:3020 quickback compile

See Local Compiler for running the compiler locally with Docker.

On this page