Concepts
Model aliases: fast, balanced and best
SubToAPI exposes three stable Claude tiers instead of raw model ids. What each alias is for, how to pick one, and how to list them with GET /v1/models.
Updated
Your code names a *tier*, not a dated model id. When the provider ships a better model for that tier the deployment is updated server-side and your integration keeps working unchanged.
Aliases
Listing models
terminal
200 OK
Choosing a tier
- Start on
balanced. Move individual call sites tofastonce you know the task is simple. - Reserve
bestfor the few requests where quality matters more than latency — and measure with the usage page. - Tier names are accepted in
modelon every endpoint and echoed back in the response.
Frequently asked questions
- Can I pin a specific Claude model id?
- No. Tiers are deliberately stable aliases so that provider model updates never break your integration.
- Do tiers affect price?
- SubToAPI charges for the platform, not per token. Your Claude usage remains subject to the provider access authorized for the deployment.