QuotaFlow Docs

Gemini-compatible generateContent

When to use this page

Use this page when your client expects the Gemini generateContent API shape.

Base URL

https://app.quotaflow.ai

Endpoint

POST https://app.quotaflow.ai/v1beta/models/{model}:generateContent

Supported image models

Curl

curl "https://app.quotaflow.ai/v1beta/models/gemini-3-pro-image-preview:generateContent" \
  -H "x-goog-api-key: $QUOTAFLOW_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "contents": [
      {
        "role": "user",
        "parts": [
          { "text": "Create a clean teal product dashboard illustration." }
        ]
      }
    ]
  }'

QuotaFlow returns a Gemini-compatible response for Gemini-style clients.

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