QuotaFlow Docs

Authentication

When to use this page

Use this page when wiring QuotaFlow into an SDK, server, CI job, or agent runtime.

Bearer token

QuotaFlow accepts an API key as a bearer token.

Authorization: Bearer qf_your_key_here

Alternate headers

Some clients cannot set Authorization. QuotaFlow also accepts:

x-api-key: qf_your_key_here

or:

x-goog-api-key: qf_your_key_here

Security rules

Common authentication errors

{
  "error": "Missing API key",
  "message": "Please provide an API key in the x-api-key, x-goog-api-key, or Authorization header"
}

This means no key reached the API.

{
  "error": {
    "message": "Invalid API key",
    "type": "authentication_error"
  }
}

This means the key is missing, disabled, expired, deleted, or from a different environment.

AI agents: start at /llms.txt, fetch /llms-full.txt for full context, and parse /openapi.yaml for endpoint schemas.