Resources // LLM Tokens
Cohere Free Developer Tier
The offer
- Free Trial (evaluation) API key, auto-issued on signup: access to Chat (Command A / R family), Embed v4, Rerank, Tokenize, Classify, Audio Transcribe and more
- Capped at 1,000 total API calls/month, plus per-endpoint per-minute limits (see table)
- Trial keys are strictly non-commercial: production/commercial use needs a paid pay-as-you-go key (separate application)
Who qualifies
- None, just registration (no credit card). Every account starts with Trial-key access only.
Community Insights
Cohere is the enterprise / RAG-infrastructure player, and its Rerank API is the developer favorite, praised both for relevance and for the observability you get from per-chunk relevance scores. The free Trial key is fine for evaluation (1,000 calls/month, low per-minute limits) but is non-commercial, and developers call the paid generation API overpriced (~$10/M output tokens). The open-source crowd sees its models as closed and benchmark-modest versus DeepSeek/Qwen/Mistral, though Cohere released Command A+ under Apache 2.0 in May 2026, softening that critique for its generative line (Embed and Rerank remain API-only).
Rate limits
| Endpoint | Trial (free) | Production |
|---|---|---|
| Chat | 20/min | 500/min |
| Embed | 100/min | 2,000/min |
| Embed (Images) | 5/min | 400/min |
| Rerank | 10/min | 1,000/min |
| Tokenize | 100/min | 2,000/min |
| Classify | 100/min | 1,000/min |
| EmbedJob | 5/min | 50/min |
All endpoints are also capped at 1,000 calls/month on a trial key.
Best Practices (from community tips)
- Use the free trial for evaluation, not scale. Plan around 1,000 calls/month and low per-minute limits; cache rerank results for stable corpora.
- Lean on Cohere where it is strongest: Rerank. Drop it into your RAG stack and treat the relevance scores as observability signals.
- Mind the non-commercial restriction. Move to a paid key (or AWS Bedrock/marketplace integration) before anything production.
- Be price-conscious on generation. Benchmark total cost vs DeepSeek/Qwen/Mistral/OpenAI; consider hybrid RAG (cheap OSS for generate, Cohere for rerank).