Pricing
You can query the selling price of the models your API key can access programmatically — i.e. the actual price you are billed. All endpoints are GET and authenticated with an API key.
Prices are presented in customer-facing units: per 1M tokens for LLM / embedding / rerank, per 1M characters for TTS, per minute for STT, and per image for image generation/editing. Currency is USD.
Full price list
Returns the price of every model your key can use (same scope as GET /v1/models).
curl https://app.qevron.ai/v1/pricing \
-H "Authorization: Bearer $QEVRON_API_KEY"Response
{
"object": "list",
"data": [
{
"model": "verinova-large",
"type": 1,
"modality": "llm",
"owner": "arpanet",
"currency": "USD",
"pricing": {
"input": { "amount": 0.1, "unit": "1M_tokens", "display": "$0.1 / 1M tokens" },
"output": { "amount": 0.3, "unit": "1M_tokens", "display": "$0.3 / 1M tokens" }
}
},
{
"model": "blab-stable",
"type": 7,
"modality": "tts",
"owner": "arpanet",
"currency": "USD",
"pricing": {
"input": { "amount": 6, "unit": "1M_characters", "display": "$6 / 1M characters" }
}
},
{
"model": "solab-stt",
"type": 8,
"modality": "stt",
"owner": "arpanet",
"currency": "USD",
"pricing": {
"input": { "amount": 0.003, "unit": "minute", "display": "$0.003 / minute" }
}
}
]
}| Field | Description |
|---|---|
model | Model name (the one you use in /v1/chat/completions etc.). |
type | Numeric model type (1=LLM, 3=embedding, 5=image, 6=image edit, 7=TTS, 8=STT, 10=rerank). |
modality | Human/AI-readable type label: llm, embedding, rerank, tts, stt, image, image_edit. |
owner | The model's provider. |
currency | Price currency (USD). |
pricing | The billing dimensions for this model. Only dimensions greater than zero are included. |
pricing.<dim>.amount | Selling price per unit (numeric). |
pricing.<dim>.unit | Unit: 1M_tokens, 1M_characters, minute, image. |
pricing.<dim>.display | Human-readable price string (e.g. "$0.3 / 1M tokens"). |
Possible dimensions: input + output for LLM; input for embedding/rerank/TTS; input for STT; per_image for image generation/editing.
Single model price
curl https://app.qevron.ai/v1/pricing/verinova-large \
-H "Authorization: Bearer $QEVRON_API_KEY"Returns a single model object (same shape as the data items above). Returns 404 model_not_found if your key cannot access the model.
TIP
The returned prices are the final selling price — group discounts and the platform markup are already applied, i.e. what you pay per call. Cost basis is never exposed. Only models your key can use are listed. For your actual spend, see Billing / Usage.