docs/getting-started/clinepass.mdx
ClinePass is a low-cost monthly subscription — $9.99/month — that offers 2-5x the usage on popular open coding models compared to standard API rate.
It's completely optional. You don't need ClinePass to use Cline, and you can always use any other provider alongside it.
<Card title="Subscribe to ClinePass" icon="credit-card" href="https://app.cline.bot/dashboard/subscription?personal=true"> Get started for $9.99/month and unlock 2-5x the usage on popular open coding models compared to standard API rate. </Card>ClinePass is a separate provider in Cline. After subscribing, select ClinePass wherever you configure your provider.
/settings and select ClinePass as your provider.Open models have gotten really good. They now reach performance close to proprietary models for coding tasks, and because many providers can serve them competitively, they're usually far cheaper.
However, getting reliable access can be difficult. Providers vary in quality and availability, and standard rate limits can throttle heavy agentic workflows that read files, run commands, and iterate across many turns.
ClinePass solves this by:
ClinePass includes the following models, tested and benchmarked for coding agent use:
| Model | Model ID |
|---|---|
| GLM-5.2 | cline-pass/glm-5.2 |
| Kimi K3 | cline-pass/kimi-k3 |
| Kimi K2.7 Code | cline-pass/kimi-k2.7-code |
| Kimi K2.6 | cline-pass/kimi-k2.6 |
| DeepSeek V4 Pro | cline-pass/deepseek-v4-pro |
| DeepSeek V4 Flash | cline-pass/deepseek-v4-flash |
| MiMo-V2.5 | cline-pass/mimo-v2.5 |
| MiMo-V2.5-Pro | cline-pass/mimo-v2.5-pro |
| MiniMax M3 | cline-pass/minimax-m3 |
| Qwen3.7 Max | cline-pass/qwen3.7-max |
| Qwen3.7 Plus | cline-pass/qwen3.7-plus |
You can use ClinePass models from your own scripts, apps, or automation through the Cline API. The API uses the same OpenAI-compatible Chat Completions format as the rest of Cline's API.
To get started, create an API key from Settings > API Keys in app.cline.bot. For the complete walkthrough, see the Cline API Getting Started guide.
Use the full ClinePass model slug in the model field:
export CLINE_API_KEY="your_api_key_here"
curl -X POST https://api.cline.bot/api/v1/chat/completions \
-H "Authorization: Bearer $CLINE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "cline-pass/qwen3.7-max",
"messages": [
{"role": "user", "content": "Write a TypeScript function that validates an email address."}
],
"stream": false
}'
ClinePass is a flat monthly subscription, so you are not charged the individual API prices below. These reference prices show the underlying per-1M-token rates for each model and can help you understand how usage is measured against your ClinePass quota (2-5x quota compares to paying standard api rate).
| Model | Input | Output | Cached Read | Cached Write |
|---|---|---|---|---|
| GLM-5.2 | $1.40 | $4.40 | $0.26 | - |
| Kimi K3 | $3.00 | $15.00 | $0.30 | - |
| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - |
| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - |
| DeepSeek V4 Pro | $1.74 | $3.48 | $0.0145 | - |
| DeepSeek V4 Flash | $0.14 | $0.28 | $0.0028 | - |
| MiMo-V2.5 | $0.14 | $0.28 | $0.0028 | - |
| MiMo-V2.5-Pro | $1.74 | $3.48 | $0.0145 | - |
| MiniMax M3 | $0.30 | $1.20 | $0.06 | - |
| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 |
| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 |
| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 |
ClinePass measures usage against three limits:
To check your current usage, visit your Cline dashboard.