Available Models
Subscriptions
Always-On and Embeddings models are included in every subscription.
SYN Aliases (Recommended)
Use a syn: alias to automatically route to the latest recommended model for a given category. These aliases are always up-to-date and are the easiest way to ensure you're using the best available model.
| Alias | Resolves To | Category |
|---|---|---|
syn:large:text | hf:zai-org/GLM-5.1 | Large text model |
syn:small:text | hf:zai-org/GLM-4.7-Flash | Small text model |
syn:large:vision | hf:moonshotai/Kimi-K2.6 | Large vision model |
syn:small:vision | hf:Qwen/Qwen3.6-27B | Small vision model |
Example:
curl -X POST https://api.synthetic.new/v1/chat/completions \
-H "Authorization: Bearer ${SYNTHETIC_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"model": "syn:large:text",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Always-On Models
These models are included in all subscriptions. Per-token pricing is also available with usage-based billing.
Pinning to models may result in errors over time
Pinning to specific model names risks 404 errors when we rotate older models out. Use a syn: alias instead for automatic routing to the latest recommended model.
| Model | Provider | Context length | Status |
|---|---|---|---|
| hf:MiniMaxAI/MiniMax-M3 | Synthetic | 512k tokens | ✓ Included |
| hf:Qwen/Qwen3.6-27B | Synthetic | 256k tokens | ✓ Included |
| hf:moonshotai/Kimi-K2.6 | Synthetic | 256k tokens | ✓ Included |
| hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 | Synthetic | 256k tokens | ✓ Included |
| hf:zai-org/GLM-4.7 | Synthetic | 198k tokens | ✓ Included |
| hf:zai-org/GLM-4.7-Flash | Synthetic | 192k tokens | ✓ Included |
| hf:zai-org/GLM-5.1 | Synthetic | 192k tokens | ✓ Included |
| hf:openai/gpt-oss-120b | Fireworks | 128k tokens | ✓ Included |
| hf:Qwen/Qwen3.5-397B-A17B | Together AI | 256k tokens | ✓ Included |
Model Details
More information about each model is available via the /openai/v1/models endpoint.
Embedding Models
Embedding models convert text into numerical vectors for search, clustering, and other applications.
There's no additional charge for using embeddings, and embeddings requests don't count against your subscription rate limit.
| Model | Provider | Context length | Status |
|---|---|---|---|
| hf:nomic-ai/nomic-embed-text-v1.5 | Fireworks | 8k tokens | ✓ Included |
Getting Started
Ready to start using our models? Check out:
- Getting Started Guide - Your first API call
- /chat/completions - Most popular endpoint for conversations
Need help choosing the right model? Join our Discord community for recommendations!