Models and Pricing

Discover model availability, modalities, pricing, regions, and supported parameters

EmpirioLabs AI exposes a canonical model catalog through the API. The same catalog powers the Models page and Pricing page on the website.

List models

$curl "https://api.empiriolabs.ai/v1/models?available=true" \
> -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"

The response includes each model’s id, display name, provider, modalities, capabilities, supported parameters (with types, defaults, min/max), context window, and pricing.

Retrieve one model

$curl "https://api.empiriolabs.ai/v1/models/seed-2-0-pro" \
> -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"

The detail response includes the full supported_parameters array, capabilities object, default_params, and pricing breakdown.

Model categories

CategoryExamplesTypical pricing unit
Text / ChatQwen3-Max, Seed 2.0 Pro, Mistral Medium 3.1, Nova ProPer token (input + output)
ReasoningQwen3-Max-Thinking, Magistral Medium, Seed 2.0 Pro (reasoning)Per token (input + output)
Image generationQwen Image 2.0, Seedream 5.0Per image
Video generationKling, Hunyuan Video, Wan 2.7Per video-second
Audio / SpeechDeepgram Nova 3, GLM TTSPer audio-second
MultimodalQwen3.5 Flash, Nova Lite 2, MIMO v2.5 ProPer token
EmbeddingNomic Embed, Nomic Embed v2Per token
CodeSeed 2.0 CodePer token

Pricing units

Models are not all token-priced. The catalog may use any of these billing units:

  • token — charged per input token and per output token (most text/chat models)
  • request — flat rate per API call
  • image — charged per generated image
  • video-second — charged per second of generated video
  • audio-second — charged per second of generated or transcribed audio
  • tool-call — charged per tool invocation
  • custom — model-specific billing (see the model’s pricing array)

Always call GET /v1/models or GET /v1/models/{modelId} for current pricing metadata before estimating cost.

Discount labels

Discount labels such as Save 10% reflect the discount against the comparable standard API rate from the original provider, when a standard rate is available. These discounts are applied automatically — no coupon or special plan required.

Regions

Each model’s served_from field indicates the region or provider infrastructure used to serve requests. This can help with latency planning and data residency requirements.