Google's balanced mid-tier: strong reasoning and coding with native vision and a 1M-token context, tuned for speed and high-volume production traffic at a fraction of Pro's cost.
Every rate is 50% of the provider's official list price. USD per million tokens.
| Token type | List price | Tokenless |
|---|---|---|
| Input | $0.50 | $0.25 |
| Output | $3.50 | $1.75 |
| Cache write | $0.50 | $0.25 |
| Cache read | $0.05 | $0.03 |
Tokenless speaks the OpenAI Chat Completions format. Point your client at the base URL, set model to gemini-3.5-flash, and you are done.
curl https://api.tokenless.store/api/v1/chat/completions \
-H "Authorization: Bearer $TOKENLESS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.5-flash",
"messages": [{ "role": "user", "content": "Hello" }]
}'