SupaNexus

Model pricing

Markdown version

Replace <BASE_URL> using values from Endpoints.

SupaNexus bills by token usage. OpenAPI GET /v1/models returns model metadata only — not sell prices. Use the developer console → Models marketplace as the source of truth.

Where to see prices

  1. Sign in to the Developer Console.
  2. Open Models.
  3. Open a model’s detail page and check Pricing.

When tiered pricing is configured, the detail page typically shows:

TierMeaning
InputNew input tokens (not from cache)
Cached inputInput tokens that hit Prompt Cache (usually cheaper)
OutputCompletion tokens

Some models may not have a public price yet — follow what the marketplace displays.

OpenAPI vs billing

ScenarioDescription
List modelsGET /v1/models — no prices
Actual chargesAfter a successful POST /v1/chat/completions or POST /v1/messages, SupaNexus bills from token usage in the response (including cache hits) at the rates shown in the marketplace

See Chat Completions — usage & Prompt Cache billing for the simplified formula.

Related