What SiliconFlow's free tier allows
Rate limits for free models are fixed; paid models are tiered by monthly spend and start at tier L0 with 1,000 RPM and 40,000 TPM. Limits are enforced per user account rather than per API key, and each model is limited separately. deepseek-ai/DeepSeek-R1 and deepseek-ai/DeepSeek-V3 carry an extra cap of 30 requests/hour and 100 requests/day.
- Published limits
- 1000 requests per minute
- Free access type
- Provider free tier
- Credit card
- Not required
- Protocol
- OpenAI-compatible at
https://api.siliconflow.com/v1 - Lifecycle
- Active
- Sources reviewed
- 2026-07-25
The 1,000 RPM figure is the L0 paid-model ceiling. Free models have their own fixed limits published per model on the model pages.
Where SiliconFlow sits in this catalog
SiliconFlow is one of 15 provider free tier entries among the 25 providers detailed here. It asks for no credit card, which is true of 23 of the 25. It publishes fixed numbers — 1000 requests per minute — which only 9 of the 25 do.
| Compared with | Published limits | Card | Endpoint |
|---|---|---|---|
| SiliconFlow (this page) | 1000 requests per minute | Not required | api.siliconflow.com |
| Fireworks AI | 10 requests per minute | Not required | api.fireworks.ai |
| Z.AI Open Platform | Selected models priced at zero | Not required | api.z.ai |
| Novita AI | Selected models priced at zero | Not required | api.novita.ai |
Models SiliconFlow lists as free
Qwen/Qwen3-8B— Qwen, also free at 8 other providers hereTHUDM/GLM-4-9B-0414— GLM, also free at 3 other providers heredeepseek-ai/DeepSeek-R1— DeepSeek, also free at 4 other providers here
8 other providers here also host the Qwen family on free terms, and the terms are not the same: Cloudflare Workers AI, Alibaba Cloud Model Studio, Ollama Cloud, Together AI, Nebius Token Factory, DeepInfra, Chutes, Scaleway Generative APIs. 4 other providers here also host the DeepSeek family on free terms, and the terms are not the same: SambaNova Cloud, Hugging Face Inference Providers, Nebius Token Factory, DeepInfra. 3 other providers here also host the GLM family on free terms, and the terms are not the same: Z.AI Open Platform, Cerebras Inference, Chutes.
Checking a SiliconFlow key
The CORS preflight allows any origin to send an Authorization header, so a browser can call this endpoint directly. That was measured against https://api.siliconflow.com on 2026-07-25.
So a key can be checked in the browser checker without installing anything. If you would rather not paste a key into a web page, this does the same thing:
#!/usr/bin/env sh
set -eu
: "${SILICONFLOW_API_KEY:?Set SILICONFLOW_API_KEY to a key you created yourself at the provider console}"
# Prints the models this key can reach, then the HTTP status on its own line so
# 200, 401, and 429 stay distinguishable.
curl --silent --show-error \
--write-out '\nHTTP %{http_code}\n' \
--header "Authorization: Bearer $SILICONFLOW_API_KEY" \
'https://api.siliconflow.com/v1/models'
Using a SiliconFlow key
SiliconFlow serves the OpenAI chat completions protocol at https://api.siliconflow.com/v1. Point any client that accepts a custom base URL at it, and let the client read the key from SILICONFLOW_API_KEY so the value never lands in a config file:
# Merge this snippet into ~/.codex/config.toml.
# Project-level config cannot select a custom model provider.
model = "Qwen/Qwen3-8B"
model_provider = "siliconflow"
[model_providers.siliconflow]
name = "SiliconFlow OpenAI-compatible gateway"
base_url = "https://api.siliconflow.com/v1"
env_key = "SILICONFLOW_API_KEY"
wire_api = "responses"
Questions about the SiliconFlow free tier
Does SiliconFlow ask for a credit card?
No. SiliconFlow is one of 23 providers here that hand out free access without a card, so the only cost of trying it is the signup.
What are SiliconFlow's free-tier rate limits?
SiliconFlow publishes 1000 requests per minute. Those are the numbers in its own documentation as reviewed on 2026-07-25.
What happens when a SiliconFlow key hits the limit?
The endpoint answers 429. That is a statement about the request that was refused, not about how much quota is left; only a reset header from the provider tells you when it clears.
Is the SiliconFlow free tier going away?
Nothing in SiliconFlow's own documentation says so as of 2026-07-25. The 1,000 RPM figure is the L0 paid-model ceiling. Free models have their own fixed limits published per model on the model pages.
Can SiliconFlow be used with Codex, Cline, or Continue?
Yes. SiliconFlow serves the OpenAI chat completions protocol at https://api.siliconflow.com/v1, so any client that accepts a custom base URL can use it. Claude Code is the exception, because it speaks the Anthropic protocol instead.
Official sources
- SiliconFlow rate limitshttps://docs.siliconflow.com/en/userguide/rate-limits/rate-limit-and-upgradation
- SiliconFlow quick starthttps://docs.siliconflow.com/en/userguide/quickstart
- SiliconFlow modelshttps://cloud.siliconflow.com/models
Every figure above was read from those pages on 2026-07-25. Where a provider states a limit only inside a console, this catalog records that fact instead of a number. See the methodology for how an entry gets in and how it gets corrected.