Skip to main content

Getting Started > Models

MODEL ACCESS BY PLAN

See which models each plan tier (Free, Starter, Pro, Enterprise) can access, with cURL, Python, and JavaScript examples.

Overview

The Model Access endpoint returns which model IDs each plan tier can call, bucketed by category (LLM, STT, TTS, Image). This is useful for:

  • Showing users which models they can access on their current plan
  • Building model selectors that grey out unavailable models
  • Checking whether a specific model requires an upgrade

No authentication required.

Endpoint

bash
GET /api/v1/models/access

Response Shape

json
{
  "plans": {
    "free": {
      "models": ["auto", "sarvam-30b", "sarvam-105b", "kimi-k2.5", "kimi-k2.6", "glm-4.7-flash", "gpt-oss-120b", "nemotron-3-super", "gemma-4-26b-a4b-it", "mistral-small-3.1", "saaras:v3", "whisper-large-v3-turbo", "nova-3", "bulbul:v3", "aura-2-en", "aura-2-es", "melotts", "flux-2-klein-9b", "flux-2-dev", "lucid-origin", "phoenix-1.0", "sdxl-lightning", "dreamshaper-8-lcm"],
      "by_category": {
        "llm": ["auto", "sarvam-30b", "sarvam-105b", "kimi-k2.5", "kimi-k2.6", "glm-4.7-flash", "gpt-oss-120b", "nemotron-3-super", "gemma-4-26b-a4b-it", "mistral-small-3.1"],
        "stt": ["saaras:v3", "whisper-large-v3-turbo", "nova-3"],
        "tts": ["bulbul:v3", "aura-2-en", "aura-2-es", "melotts"],
        "image": ["flux-2-klein-9b", "flux-2-dev", "lucid-origin", "phoenix-1.0", "sdxl-lightning", "dreamshaper-8-lcm"]
      },
      "restriction": "23 models across 4 categories"
    },
    "starter": {
      "models": ["...all free models + 300+ paid models"],
      "by_category": { "llm": ["..."], "stt": ["..."], "tts": ["..."], "image": ["..."] },
      "restriction": "All 300+ models"
    },
    "pro": {
      "models": ["..."],
      "by_category": { "llm": ["..."], "stt": ["..."], "tts": ["..."], "image": ["..."] },
      "restriction": "All 300+ models"
    },
    "enterprise": {
      "models": ["..."],
      "by_category": { "llm": ["..."], "stt": ["..."], "tts": ["..."], "image": ["..."] },
      "restriction": "All 300+ models + custom models"
    }
  }
}

Code Examples

curl https://api.callmissed.com/api/v1/models/access

Free Plan Models

The free tier includes 17 models:

CategoryModels
LLM (8)sarvam-30b, sarvam-105b, kimi-k2.5, kimi-k2.6, glm-4.7-flash, gpt-oss-120b, nemotron-3-super, gemma-4-26b-a4b-it
STT (1)saaras:v3
TTS (1)bulbul:v3
Image (8)flux-2-klein-9b, flux-2-dev, lucid-origin, phoenix-1.0, sdxl-lightning, dreamshaper-8-lcm, nano-banana-2 (paid), nano-banana-pro (paid)

All other models (e.g. kimi-k2.5-fast, openai/*, anthropic/*, google/*, x-ai/*, qwen/*, mistralai/*) require a paid plan.

Error Handling

When a free-plan user calls a paid model, the API returns:

json
{
  "error": {
    "message": "Model 'openai/gpt-5.4-mini' requires a paid plan. See GET /api/v1/models/access for the full list of free-plan models. Upgrade at https://app.callmissed.com/pricing",
    "type": "invalid_request_error",
    "code": "model_access_denied"
  }
}

HTTP status: 403

Was this page helpful?