CohereUpdated July 2026

Cohere API Best Practices 2026

Cohere is an enterprise RAG stack rather than a general chat API, and the teams that get value from it use all three pieces — Embed, Rerank, and Command — instead of treating it as another chat endpoint. This guide covers that architecture, trial-versus-production keys, rate limits, and deployment options.

Quick Reference

  • Status page: status.cohere.com
  • Trial keys are not production keys. Trial limits are low monthly caps meant for evaluation — swap before launch, not at launch
  • Rerank is the highest-ROI endpoint Cohere sells — it improves RAG retrieval quality more per dollar than upgrading the generation model
  • 429 = rate limit, and it arrives far sooner on a trial key than teams expect
  • Embed v4 supports multimodal and multiple embedding types — match the input_type parameter to search vs document or quality silently degrades
  • Cohere supports private and VPC deployment, which is often the actual reason enterprises pick it

Cohere Model Selection Guide

Model choice is the largest single lever on both cost and latency. Start at the bottom of this table and move up only when an eval on your own data shows the smaller option failing.

command-a / command-r-plus
Context: 128K+Mid to high

Best for

Grounded RAG generation with citations and enterprise tool use

Avoid when

General creative writing — it is tuned for grounded, sourced output

command-r
Context: 128KLow

Best for

High-volume RAG answers where the plus-tier quality gain is not measurable

Avoid when

Complex multi-step agentic chains

rerank (v3 class)
Context: n/aPer search unit

Best for

Reordering top-N retrieval results before they reach the generation model

Avoid when

Nothing — if you run RAG without reranking you are leaving quality on the table

embed v4
Context: n/aPer token

Best for

Multilingual and multimodal document embedding for the retrieval layer

Avoid when

Using one input_type for both queries and documents — that quietly hurts recall

Trial keys expire into an outage

Cohere issues trial keys with low monthly caps intended for evaluation, and production keys with real limits. The failure mode is predictable: a team prototypes on a trial key, ships, and hits the monthly ceiling partway through the first busy month, at which point every request 429s until the calendar rolls over.

Swap to a production key during integration, not at launch, and put an alert on remaining quota. This is the single most common Cohere production incident and it is entirely preventable.

Rerank is the endpoint most teams skip and should not

The standard RAG pipeline retrieves top-N by vector similarity and passes them straight to the generation model. Vector similarity is a coarse relevance signal, so the top of that list frequently contains passages that match semantically but do not answer the question.

Reranking inserts a cross-encoder pass that reorders those candidates against the actual query before generation sees them. In practice, retrieving a wider N and reranking down to a smaller K improves answer quality more per dollar than upgrading the generation model — and it reduces generation cost because you send fewer, better passages.

Alert Pro

14-day free trial

Stop checking — get alerted instantly

Next time Cohere goes down, you'll know in under 60 seconds — not when your users start complaining.

  • Email alerts for Cohere + 9 more APIs
  • $0 due today for trial
  • Cancel anytime — $9/mo after trial

Embeddings: input_type is not optional

Cohere's embedding API takes an input_type parameter distinguishing search queries from documents to be indexed. The two produce different vectors optimised for their role in the retrieval pair. Using the same value for both is a silent quality bug — nothing errors, recall just quietly degrades.

This is worth auditing in any existing integration, because it commonly slips through code review: the call succeeds, results look plausible, and the loss only shows up in a retrieval eval that most teams never run.

Deployment, errors, and monitoring

Cohere supports private and VPC deployment alongside its hosted API, and for many enterprise buyers that is the actual selection criterion. If you are on a private deployment, note that your failure modes and your monitoring targets are your own infrastructure — the public status page tells you nothing about your instance.

On the hosted API, handle 429 with exponential backoff and jitter, and monitor the three endpoints separately. Embed, Rerank, and Command have different limits and different latency profiles, and a single aggregate "Cohere latency" dashboard will hide a rerank regression behind healthy generation numbers.

Production Checklist

Swap trial keys for production keys during integration

Trial monthly caps exhaust partway through a real month and 429 everything until reset. Most common Cohere incident.

Add Rerank to your RAG pipeline

Retrieve wider, rerank narrower. More quality per dollar than upgrading the generation model, and it cuts generation cost.

Set input_type correctly on every embed call

Queries and documents need different values. Getting it wrong degrades recall silently with no error.

Monitor Embed, Rerank, and Command separately

Different limits, different latency profiles. An aggregate dashboard hides a rerank regression.

Default to command-r over the plus tier

For high-volume grounded answers the quality gain is often not measurable. Upgrade where evals show it.

Alert on remaining monthly quota

Quota exhaustion is a cliff, not a slope. You want a week of warning, not a 429 storm.

Know what your status page covers

On a private or VPC deployment, status.cohere.com says nothing about your instance. Monitor your own.

Run a retrieval eval, not just a generation eval

Most RAG quality problems are retrieval problems. If you only eval the final answer you cannot tell which layer failed.

Staff Pick

📡 Monitor your APIs — know when they go down before your users do

Better Stack checks uptime every 30 seconds with instant Slack, email & SMS alerts. Free tier available.

Start Free →

Affiliate link — we may earn a commission at no extra cost to you

FAQ

Why is my Cohere API returning 429 errors?

The most common cause is still being on a trial key. Cohere issues trial keys with low monthly caps meant for evaluation, and teams that prototype on one and ship without swapping hit the ceiling partway through the first busy month, at which point every request returns 429 until the calendar resets. Swap to a production key during integration rather than at launch, and alert on remaining quota. On a production key, handle 429 with exponential backoff and jitter.

Do I need Cohere Rerank if I already have embeddings?

Yes, in almost every RAG pipeline. Vector similarity is a coarse relevance signal, so the top of a purely embedding-ranked list routinely contains passages that match semantically without answering the question. Rerank runs a cross-encoder pass that reorders candidates against the actual query before generation sees them. Retrieving a wider N and reranking down to a smaller K typically improves answer quality more per dollar than upgrading the generation model, and it lowers generation cost by sending fewer, better passages.

What does the input_type parameter do in Cohere Embed?

It tells the model whether the text is a search query or a document being indexed, and the two produce different vectors optimised for their role in the retrieval pair. Using the same value for both is a silent quality bug: nothing errors, the call succeeds, results look plausible, and recall quietly degrades. It is worth auditing in any existing integration, because the loss only surfaces in a retrieval eval that most teams never run.

Should I use command-a or command-r?

Start with command-r for high-volume grounded RAG answers. For many production paths the quality gain from the plus tier is not measurable against the price difference, and grounded generation over well-reranked passages is not the part of the pipeline that usually limits answer quality — retrieval is. Move to command-a or command-r-plus on the specific paths where an eval shows a real win, typically complex multi-step agentic chains.

Does status.cohere.com cover private Cohere deployments?

No. Cohere supports private and VPC deployment alongside its hosted API, and for many enterprise buyers that isolation is the actual selection criterion. On a private deployment your failure modes are your own infrastructure, and the public status page tells you nothing about your instance. Monitor the deployment directly — availability, latency per endpoint, and quota — rather than relying on Cohere-hosted status signals.

Related guides