Quotaflow
llms.txtOpenAPIDashboard
OpenAI-compatible

Embeddings

When to use this page

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

Endpoint

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

Supported models

Request

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

Curl

curl https://api.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.