Documentation

Models and Model IDs in the NexoRouter documentation.

Models and Model IDs

The Models page is the source of truth for public model IDs. Use it when calling the API, configuring tools, and troubleshooting model_not_found.

Good starter models

NeedStart withWhy
Low-cost testingdeepseek-v4-flashFast API checks, automation, and agent loops.
General app featuresgpt-4o-miniText generation, extraction, support, and lightweight reasoning.
Multilingual workflowsQwen/Qwen-PlusBalanced English, Spanish, and Chinese generation.

Copy the exact model ID

Model IDs are case-sensitive. Slashes and suffixes matter.

Correct:

Qwen/Qwen-Plus

Different IDs:

qwen-plus
Qwen Plus
qwen/qwen-plus

Public model status

The website uses these model status labels:

StatusMeaning
AvailablePublicly available and usable through the API.
Price pendingVisible for catalog transparency but not available through the public API until pricing is confirmed.
TieredPublic model with complex or tiered pricing normalized for display.
UnavailableNot currently available upstream.

Only publicly available models appear in GET /v1/models.

Key model scope

An API key can be:

  • unrestricted, which means it can use all current and future publicly available models;
  • limited to chat models;
  • limited to selected model IDs.

If a key is scoped too narrowly, a request can return model_not_found even when the model exists in the public catalog. Check the key's model scope before changing application code.

Troubleshooting model_not_found

  1. Open Models.
  2. Search for the model you want.
  3. Copy the full model ID.
  4. Confirm the key's model scope allows that model.
  5. Retry the request.

Do not copy vendor aliases directly from another provider's documentation. NexoRouter public model IDs may differ from upstream aliases.

Models and Model IDs — NexoRouter