Table of Contents

Pricing

AIVAX uses a prepaid account balance. Paid invoices add credit to the account, and usage records subtract from that balance.

The backend calculates balance as:

balance = paid, unexpired invoice total - usage total

Use the AIVAX pricing page for current commercial plan prices. This page documents billing behavior that is visible in the API source.

Credits and invoices

Credits are represented as invoices.

  • Paid invoices increase the usable account balance until their expiration date.
  • Unpaid payment invoices are created with a one-year expiration.
  • Unpaid invoices older than three days are removed by cleanup.
  • Expired paid invoices no longer count toward balance.
  • Payment invoice creation requires at least 3 USD and is rate-limited.

Usage billing

Every billable operation writes one or more usage records. Each usage record has:

  • Description.
  • Unit price.
  • Quantity.
  • Optional model name.
  • Usage category.
  • Resources such as API key, gateway, or collection.

The final unit price is multiplied by the account tax multiplier and the current plan commission multiplier.

Per-request consumed credits

When a request reports usage, AIVAX includes the total credits charged for that request in the response header:

Consumed-Credits: 0.005

The value is a decimal number of credits, formatted with a period as the decimal separator. It is the total for the complete request, including all billable operations performed while processing it. A tracked operation that has no charge can return Consumed-Credits: 0.

If the header is absent, the request did not report a usage total. Do not treat an absent header as 0. This header reports only the current request's consumption; use the account balance APIs to obtain the account's available balance or broader billing history.

Plan Commission multiplier
Free 1.25x
Pro 1.05x
Max 1.00x

Pricing list

Service Pricing
Account
Storage - Free Plan: 30 MB included, no expansion
- Pro Plan: 2 GB included, $0.50/GB/month for excess, billed hourly
- Max Plan: 20 GB included, $0.20/GB/month for excess, billed hourly
Inference
Moderation - Input: $0.10/M tokens
- Cache: $0.0375/M tokens
- Output: $0.30/M tokens
- Context size: 16K tokens
Agentic Tests - Selected model or AI Gateway: its regular inference rates
- low profile — simulated user: input $0.25/M tokens, cached input $0.025/M tokens, output $1.50/M tokens; judge: input $0.30/M tokens, cached input $0.03/M tokens, output $2.50/M tokens
- medium profile (default) — simulated user and judge, each: input $0.75/M tokens, cached input $0.075/M tokens, output $3.75/M tokens
- high profile — simulated user: input $0.75/M tokens, cached input $0.075/M tokens, output $3.75/M tokens; judge: input $1.25/M tokens, cached input $0.15/M tokens, output $4.25/M tokens
RAG and collections
Collections Text embedding: $0.015/M tokens
Media Injector - PDFs and images, up to 272K input tokens: input $0.30/M tokens, cached input $0.03/M tokens, output $1.80/M tokens
- PDFs and images, above 272K input tokens: input $0.60/M tokens, cached input $0.06/M tokens, output $3.60/M tokens
- Audio, up to 256K input tokens: input/media $0.60/M tokens, cached input $0.12/M tokens, output $3.00/M tokens
- Audio, above 256K input tokens: input/media $1.20/M tokens, cached input $0.24/M tokens, output $6.00/M tokens
- Video: input/media $0.45/M tokens, cached input $0.045/M tokens, output $3.75/M tokens (4)
Semantic search Query: $0.015/M tokens
RAG responses ~$0.50/M tokens (3)
Text segmentation $0.30/M tokens
Text classification $0.015/M tokens
Reflex - Cache miss: $0.015/M tokens
- Cache hit: $0.003/M tokens
Voice and speech
Voice Sessions Selected realtime model's pricing rates
Internet access
Web search $5/1k searches
X (Twitter) search $5/1k searches
Advanced web search ~$0.75/M tokens (1)
Fetch and OCR extraction - Free Plan: 1,000 PU/day free, $0.15/1k PUs
- Pro Plan: 10,000 PU/day free, $0.05/1k PUs
- Max Plan: 50,000 PU/day free, $0.02/1k PUs (2)
Media generation
Image generation Varies by model
Speech-to-text Varies by model
Text-to-speech Varies by model
Media descriptions ~$1.50/mtokens (2)
Other tools
Memory and calendar No cost
Advanced requests No cost
Document generation No cost
Web page generation No cost
  • (1) Advanced internet search pricing applies to an external model connected to internet and search tools; the price varies based on the number of interactions performed by the agent.
  • (2) Pricing for text extraction from media applies to a small omni-modal model, subject to availability.
  • (3) Pricing for RAG response generation does not include the cost of query embedding; the price varies based on the summarization model.
  • (4) Media Injector is billed for the aggregate input, cached input, output, and media usage produced while creating RAG documents. The source file, optional context, and generated content can all affect token usage. Standard account tax and plan commission multipliers still apply.

Inference billing

Integrated model billing uses the model's pricing table from the backend. Pricing can vary by model and by input-token threshold. Usage can include:

  • Text input tokens.
  • Cached input tokens, when the selected model has cached-input pricing.
  • Audio input tokens, when applicable.
  • Image input tokens, when applicable.
  • Output tokens, including audio output tokens when applicable.

BYOK (Bring-Your-Own-Key) calls use your external provider key, but AIVAX still enforces BYOK request limits because the request passes through AIVAX infrastructure.

Balance requirements

Billable routes check balance before running. The generic balance middleware rejects balances below the route minimum; chat clients, integrations, and batch processing also stop when the balance is zero or negative. Some multimodal chat-completion inputs require a minimum balance before the model call starts:

Input type Minimum balance
Image or audio $0.10
File or video $0.50

If the account balance is too low, the API returns 402 Payment Required.

Plans and limits

Plans affect both price and operation:

  • Model access.
  • Commission multiplier.
  • Request and token rate limits.
  • BYOK request limits.
  • RAG quotas.
  • Tool limits.
  • Storage quota and overage price.
  • Conversation retention.
  • Subscription-model reserve windows.

See Plans and limits for the technical quota matrix.