Models

Open Models to browse every model currently exposed through ApiGo.

What you see on the page

  • API protocol filterschat.completions, responses, messages, generateContent, embeddings, and related shapes.
  • Model family filters — Anthropic, OpenAI, Google, DeepSeek, Moonshot, MiniMax, Alibaba, Zhipu AI, and more.
  • Context window filters — 16K through 1M.
  • Per-model cards — official slug, context size, input/output USD per 1M tokens, and tags such as text, reasoning, vision, audio, long-context, cached.

Pricing is always USD per 1M tokens, with input and output billed separately. Cache hits use each model’s discounted cache rate when available.

How to choose a model ID

  1. Filter by protocol your SDK already speaks (most OpenAI SDK users start with chat.completions).
  2. Narrow by vendor or context window.
  3. Copy the official slug shown on the card.
  4. In API calls, use the exact slug shown in the catalog, for example gpt-5.6-sol.

You can also list models programmatically:

curl https://api.apigo.ai/v1/models \
  -H "Authorization: Bearer $APIGO_API_KEY"

From catalog to first call

  1. Copy a model ID from Models.
  2. Confirm you have balance under Workspace → Billing.
  3. Call /v1/chat/completions (or the protocol that matches the filter you used).
  4. Inspect Workspace → Call Logs to see which model actually answered (important when routing fallbacks are enabled).

Price changes

ApiGo mirrors upstream provider price changes. Adjustments are announced in-workspace with at least a 7-day transition window. Always re-check Models before locking a long-lived cost model into contracts.