Cohere 的免费额度给到哪一步
试用 key 免费、有限流,并且按条款不得用于生产。Chat 限 20 次/分钟,Rerank 限 10 次/分钟,Audio Transcriptions 与 EmbedJob 限 5 次/分钟,Tokenize 限 100 次/分钟,Embed 限 2,000 条输入/分钟。此外每个试用 key 在账号维度还有每月 1,000 次 API 调用的封顶。
- 官方公布限额
- 每分钟 20 次请求
- 免费形式
- 厂商免费额度
- 信用卡
- 不需要
- 协议
- 兼容 OpenAI,端点
https://api.cohere.ai/compatibility/v1 - 生命周期
- 正常开放
- 来源核验日期
- 2026-07-25
Cohere 的条款明确把试用 key 排除在生产用途之外;每月 1,000 次调用才是真正卡住你的那条线。
Cohere 在这份清单里处于什么位置
本站详列的 25 家服务商里,属于厂商免费额度的有 15 家,Cohere 是其中之一。它不要求绑信用卡,25 家里有 23 家是这样。它公布了固定数值——每分钟 20 次请求——25 家里只有 9 家做到了这一点。
| 对比对象 | 官方公布限额 | 信用卡 | 端点 |
|---|---|---|---|
| Cohere(当前页) | 每分钟 20 次请求 | 不需要 | api.cohere.ai |
| Cloudflare Workers AI | 以计算单位公布 | 不需要 | api.cloudflare.com |
| Hugging Face Inference Providers | 以额度余额公布 | 不需要 | router.huggingface.co |
| SiliconFlow | 每分钟 1000 次请求 | 不需要 | api.siliconflow.com |
Cohere 标为免费的模型
command-a-03-2025—— 不属于本清单跨服务商跟踪的任何系列command-r-plus—— 不属于本清单跨服务商跟踪的任何系列embed-v4.0—— 不属于本清单跨服务商跟踪的任何系列rerank-v3.5—— 不属于本清单跨服务商跟踪的任何系列
上面这些模型不属于本清单跨服务商跟踪的任何系列,因此在这里 Cohere 是拿到它们的唯一入口。
怎么验一个 Cohere 的 key
CORS 预检允许任意源携带 Authorization 请求头,所以浏览器可以直接调用这个端点。这一结论是 2026-07-25 针对 https://api.cohere.ai 实测得到的。
所以不用装任何东西,直接在浏览器检测页里就能验。如果你不愿意把 key 粘进网页,下面这条命令是等价的:
#!/usr/bin/env sh
set -eu
: "${COHERE_API_KEY:?Set COHERE_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 $COHERE_API_KEY" \
'https://api.cohere.ai/compatibility/v1/models'
怎么用一个 Cohere 的 key
Cohere 在 https://api.cohere.ai/compatibility/v1 上提供 OpenAI chat completions 协议。把任何支持自定义 base URL 的客户端指过去,并让客户端从 COHERE_API_KEY 读取 key,这样 key 本身永远不会落进配置文件:
# Merge this snippet into ~/.codex/config.toml.
# Project-level config cannot select a custom model provider.
model = "command-a-03-2025"
model_provider = "cohere"
[model_providers.cohere]
name = "Cohere OpenAI-compatible gateway"
base_url = "https://api.cohere.ai/compatibility/v1"
env_key = "COHERE_API_KEY"
wire_api = "responses"
关于 Cohere 免费额度的常见问题
Cohere 需要绑信用卡吗?
不需要。本站有 23 家不用绑卡就能拿到免费访问,Cohere 是其中之一,所以试一下的成本只有注册本身。
Cohere 免费额度的限流是多少?
Cohere 公布的是每分钟 20 次请求。这些数字来自它自己的文档,核验日期为 2026-07-25。
Cohere 的 key 撞到限额会怎样?
端点返回 429。这只说明那一次请求被拒了,不说明还剩多少额度;只有服务商返回的 reset 响应头才能告诉你什么时候恢复。
Cohere 的免费额度会取消吗?
截至 2026-07-25,Cohere 自己的文档里没有这样的说法。Cohere 的条款明确把试用 key 排除在生产用途之外;每月 1,000 次调用才是真正卡住你的那条线。
Cohere 能配合 Codex、Cline 或 Continue 使用吗?
可以。Cohere 在 https://api.cohere.ai/compatibility/v1 上提供 OpenAI chat completions 协议,任何支持自定义 base URL 的客户端都能用。例外是 Claude Code,它讲的是 Anthropic 协议。
官方来源
- Cohere API rate limitshttps://docs.cohere.com/docs/rate-limits
- Cohere Compatibility APIhttps://docs.cohere.com/docs/compatibility-api
- Cohere pricinghttps://cohere.com/pricing
以上每个数字都是 2026-07-25 从这些页面上读到的。如果某家只在控制台里给出限额,本清单就如实记下这件事,而不是填一个数字。收录标准和纠错流程见数据方法。