Routescope APIRoutescope API
Quick Start Your First Call

List Available Models

Get model IDs callable by the current token from the model gallery or model list endpoints

Console Lookup

  1. Open Model Gallery.
  2. Filter by provider, token group, billing type, tags, or endpoint type.
  3. Find the model you want.
  4. Copy the standard model ID.
  5. Use that ID in the model field of your API request.

Console lookup is the safest first choice because it also shows pricing and capability information.

OpenAI-Compatible Model List

Use the OpenAI-style model list endpoint to check models visible to the current API Key:

curl https://api.routescope.ai/v1/models \
  -H "Authorization: Bearer sk-your-full-secret"

Use the returned id as the model ID in OpenAI-compatible calls.

Gemini Native Model List

For Gemini-native clients, use the Gemini-style model list endpoint documented under model discovery. The returned model names should be used with Gemini-native request paths such as /v1beta/models/{model}:generateContent.

Usage Notes

  • Model visibility depends on account balance, token group, token restrictions, and platform configuration.
  • If a model appears in the model gallery but fails in code, check that the API Key is allowed to call it.
  • Avoid manually typing model IDs. Copy them from the console or API response.

How is this guide?

Last updated on