QuotaFlow Docs

Embeddings

When to use this page

Use this page when you need vector embeddings with OpenAI-compatible request and response shapes.

Endpoint

POST https://app.quotaflow.ai/openai/v1/embeddings

Supported models

Request

{
  "model": "text-embedding-3-large",
  "input": "QuotaFlow is connected."
}

Curl

curl https://app.quotaflow.ai/openai/v1/embeddings \
  -H "Authorization: Bearer $QUOTAFLOW_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "text-embedding-3-large",
    "input": "QuotaFlow is connected."
  }'

Response shape

QuotaFlow returns the OpenAI-compatible embeddings response shape, including object, data, embedding, index, model, and usage fields when available.

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