Command R+: Pricing, Context, and Benchmarks

Command R+ is Cohere's Command R model released on 2024-04-04. It runs on a 128K-token context window, priced at $2.50/M input and $10.00/M output. RAG-first model with native citations and tool calling. Strong choice for enterprise retrieval.

Input
$2.50/M
Output
$10.00/M
Context
128K
Max output
4K

Specifications

ProviderCohere
FamilyCommand R
Released2024-04-04
Statusactive
Context window128K tokens
Max output4K tokens
Modalitiestext
Capabilities function calling json mode streaming rag citations
Tokenizercohere
API endpointhttps://api.cohere.com/v2/chat
DocumentationOfficial docs ↗
Last updated2026-05-29

What this model is good for

Based on benchmark scores and capability fit, Command R+ ranks well for:

Cost calculator

For 1,000 tokens of input and 1,000 tokens of output per call, this model costs $0.0125 per call. For typical usage:

WorkloadTokens / call (in/out)$/call$/1K calls$/1M calls
Short Q&A 200 / 100 $0.001500 $1.50 $1,500
Standard chat 1K / 500 $0.007500 $7.50 $7,500
RAG with retrieval 4K / 500 $0.015000 $15.00 $15,000
Long doc summary 20K / 1K $0.060000 $60.00 $60,000
Long context (100K input) 100K / 2K $0.265000 $265.00 $265,000

For more precise estimates including caching discounts, use the LLM API Cost Calculator.

Common comparisons

API setup

curl https://api.cohere.com/v2/chat \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "command-r-plus", "messages": [{"role": "user", "content": "Hello"}]}'

See the official documentation for the full request/response schema. For pre-flight token counting before paying, use the appropriate token counter.