Synrouter Docs

Models

Synrouter exposes a configured model catalog through the OpenAI-compatible models endpoint. Use this endpoint as the source of truth for available model IDs.

List available models

Call GET /v1/models to fetch the current model list.

bash
1curl https://synrouter.ai/api/v1/models \
2 -H "Authorization: Bearer sk-sr-..."
json
1{
2 "object": "list",
3 "data": [
4 {
5 "id": "deepseek/deepseek-v4-flash",
6 "object": "model",
7 "owned_by": "deepseek"
8 }
9 ]
10}

Model families

Synrouter routes configured models from multiple providers. The exact available set can change, so rely on /v1/models instead of hardcoding a static catalog.

Anthropic

Available through Synrouter when returned by the models endpoint.

DeepSeek

Available through Synrouter when returned by the models endpoint.

Google

Available through Synrouter when returned by the models endpoint.

MiniMax

Available through Synrouter when returned by the models endpoint.

Moonshot AI

Available through Synrouter when returned by the models endpoint.

OpenAI

Available through Synrouter when returned by the models endpoint.

Qwen

Available through Synrouter when returned by the models endpoint.

xAI

Available through Synrouter when returned by the models endpoint.

Z.ai

Available through Synrouter when returned by the models endpoint.

Recommended example IDs

These examples are useful for getting started:

  • deepseek/deepseek-v4-flash for fast OpenAI-compatible requests.
  • anthropic/claude-sonnet-4.6 for Anthropic-compatible agent workloads.