Browse, filter, and query the full catalog of models available through the Routeway API.
Routeway provides access to 200+ models from leading providers — OpenAI, Anthropic, Google, Meta, DeepSeek, MoonshotAI, and more — through a single unified endpoint.
Models Catalog
Browse all models with live pricing, context lengths, and capability filters.
GET /v1/models
Fetch the full model list programmatically with pricing and metadata.
Each model advertises which API paths it supports in the endpoints array. Not all models are available on every path.
Endpoint
Compatible with
Used for
/v1/chat/completions
OpenAI SDK, any OpenAI-compatible client
Text generation (broadest model coverage)
/v1/responses
OpenAI Responses API
Text generation
/v1/messages
Anthropic SDK
Text generation
/v1/images/generations
OpenAI SDK (images.generate)
Image generation from a text prompt
/v1/images/edits
OpenAI SDK (images.edit)
Image editing with a mask and prompt
Use /v1/chat/completions as your default for text models. It has the broadest model coverage and is compatible with any OpenAI-compatible library. Image models are only available on their respective /v1/images/* paths.
You can filter the response client-side to find models that match your requirements:
import requestsdata = requests.get("https://api.routeway.ai/v1/models").json()vision_models = [ m for m in data["data"] if m.get("available") and m.get("capabilities", {}).get("vision")]for m in vision_models: print(m["id"], "— input $", m["pricing"]["input"]["price_per_million_t"], "/ 1M")