The most cost-efficient Gemini 3.1 model — ideal for classification, extraction, routing, and other lightweight, latency-sensitive tasks that still want a 1M-token context.
Every rate is 50% of the provider's official list price. USD per million tokens.
| Token type | List price | Tokenless |
|---|---|---|
| Input | $0.15 | $0.08 |
| Output | $0.60 | $0.30 |
| Cache write | $0.15 | $0.08 |
| Cache read | $0.02 | $0.01 |
Tokenless speaks the OpenAI Chat Completions format. Point your client at the base URL, set model to gemini-3.1-flash-lite, 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.1-flash-lite",
"messages": [{ "role": "user", "content": "Hello" }]
}'