Skip to main content

Which model ID do I use with the LLM Gateway?

Use the lowercase owner/model ID from the model catalog or /v1/models, not the Run API name shown on a model's page.

Use the model's lowercase owner/model ID exactly as it appears in the model catalog or in /v1/models, for example openai/gpt-5-6-sol, claude/sonnet-5 or qwen/qwen3-8-27b-uncensored. To list them:

curl https://llm.wiro.ai/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"
  • Not the Run API name: the name on a model's page, such as Qwen/Qwen3.8-27B-Uncensored, is a different format and fails with model must use the owner/model format.

  • Not found: The requested model was not found. means the ID has the right format but doesn't match a model your project can use. Copy it again from the catalog or /v1/models.

  • Team projects: the list isn't filtered by your team's Model Access settings, so a blocked model still appears but fails with This model is not available for your team.

Did this answer your question?