Seminal AI
§2

Cohere

Cohere is a privately held, venture-backed enterprise AI company headquartered in Toronto, Canada (with offices in San Francisco, New York and London), founded in 2019 by Aidan Gomez, Ivan Zhang and Nick Frosst. It sells to regulated enterprises and governments rather than consumers, and its differentiator is deployment flexibility: the same Command/Embed/Rerank/Parse models run on Cohere's SaaS API, on Model Vault (Cohere's dedicated single-tenant inference platform, priced per instance-hour), in a customer VPC, or fully on-prem.

Data checked 2026-09-06
Models tracked
32
OpenAI-compatible API
yes
API base URL
https://api.cohere.com/v2

Its product layer is North (an agentic workplace platform) and Compass (enterprise search/indexing); Cohere Labs is its open research arm, which publishes the Aya multilingual family and open weights for most Command models on Hugging Face. As of the September 2026 pricing page Cohere has visibly pivoted its public pricing away from broad pay-as-you-go token pricing toward free/open weights plus enterprise contracts and Model Vault instance pricing.

A Access and limits

Sign up at dashboard.cohere.com; a trial API key is created automatically. Trial keys are free but capped at 1,000 API calls/month and are not licensed for production/commercial use. Production keys require Owner privileges and completion of the "Go to Production" workflow on the Billing and Usage page; production usage is pay-as-you-go, billed monthly or when the outstanding balance reaches $250.

IMPORTANT — as of the live pricing page (2026-09), production keys behave like trial keys for the newer Chat model variants (Command A+, Command A Reasoning, Command A Translate, Command A Vision), i.e. 20 req/min and 1,000 calls/month, and production use of those requires contacting sales@cohere.com. Published per-token production rate limits (500 req/min) apply only to Command A, Command R+, Command R, Command R7B and North Mini Code.

Public per-token list prices are now published ONLY for Command R ($0.15/$0.60 per 1M), Command R7B ($0.0375/$0.15 per 1M) and Embed 4 ($0.12/1M text tokens, $0.47/1M image tokens); Rerank 4 Fast is $2.00 and Rerank 4 Pro $2.50 per 1,000 searches (a search = one query against up to 100 documents); Parse 5 is $1.50 per 1,000 pages. Command A+, North Mini Code and Cohere Transcribe are listed as free (free API key access, free model download). Legacy/"existing customers" prices still on the pricing FAQ: Command $1.00/$2.00, Command-light $0.30/$0.60, Command R 03-2024 $0.50/$1.50, Command R+ 04-2024 $3.00/$15.00, Command R+ 08-2024 $2.50/$10.00, Aya Expanse (8B and 32B) $0.50/$1.50 per 1M.

Cohere no longer publishes list prices for Command A, Command A Reasoning/Translate/Vision, Rerank 3.5, the Rerank v3.0 models or the Embed v3 models — those are contact-sales. Dedicated capacity is sold via Model Vault at fixed hourly/monthly instance rates: Embed 4 Small $4.00/hr or $2,500/mo, Embed 4 Medium $5.00/hr or $3,250/mo, Rerank 3.5 Medium $5.00/hr or $3,250/mo, Rerank 4 Fast Medium $5.00/hr or $3,250/mo, Rerank 4 Pro Medium $5.00/hr or $3,250/mo and Large $10.00/hr or $6,500/mo, Parse 5 Medium $4.00/hr or $2,500/mo and XL $7.00/hr or $4,300/mo; Cohere Transcribe starts from $3.75/hr/instance. Other endpoint rate limits: Embed 2,000 inputs/min (trial and production), Embed images 5 inputs/min trial / 400 production, Audio Transcriptions 5 req/min trial and contact-sales for production.

No public batch-API discount and no published prompt-caching discount. Models are also resold through Amazon Bedrock, Amazon SageMaker, Microsoft Azure AI Foundry and Oracle OCI Generative AI, each with its own pricing. An OpenAI-SDK-compatible endpoint exists at https://api.cohere.ai/compatibility/v1.

Fine-tuning for command, command-light, command-r, classify and rerank was retired on 2025-09-15; Embed/Classify fine-tuning remains available. Retired and therefore excluded here: c4ai-aya-expanse-8b, c4ai-aya-vision-8b, embed-english-v2.0, embed-english-light-v2.0 and embed-multilingual-v2.0 (all retired 2026-04-04), and rerank-english-v2.0 / rerank-multilingual-v2.0 (shut down 2025-04-30).

C Calling the API

Cohere accepts requests in the OpenAI Chat Completions format, so any OpenAI-compatible client works by changing the base URL. Example uses command-r7b-12-2024.

curl https://api.cohere.com/v2/chat/completions \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "command-r7b-12-2024",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
from openai import OpenAI

client = OpenAI(
    base_url="https://api.cohere.com/v2",
    api_key=os.environ["API_KEY"],
)

response = client.chat.completions.create(
    model="command-r7b-12-2024",
    messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)

A compatibility layer is not always the provider's full API — caching, strict tool schemas and structured output are commonly unsupported there. Check the official docs before relying on an advanced feature.

B Models

Model Context Max out In $/M Out $/M Blended Status
Command A+ command-a-plus-05-2026 128K 64K $0.00 $0.00 $0.00 ga open
North Mini Code 1.0 $0.00 $0.00 $0.00 ga open
Command R7B command-r7b-12-2024 128K 4K $0.04 $0.15 $0.07 ga open
Embed 4 embed-v4.0 128K $0.12 $0.00 $0.09 ga
Command R (08-2024) command-r-08-2024 128K 4K $0.15 $0.60 $0.26 ga open
Command Light command-light 4K 4K $0.30 $0.60 $0.38 deprecated
Command R (03-2024) command-r-03-2024 128K 4K $0.50 $1.50 $0.75 deprecated open
Aya Expanse 32B c4ai-aya-expanse-32b 128K 4K $0.50 $1.50 $0.75 ga open
Command command 4K 4K $1.00 $2.00 $1.25 deprecated
Command R+ (08-2024) command-r-plus-08-2024 128K 4K $2.50 $10.00 $4.38 ga open
Command R+ (04-2024) command-r-plus-04-2024 128K 4K $3.00 $15.00 $6.00 deprecated open
Command A command-a-03-2025 256K 8K ga open
Command A Reasoning command-a-reasoning-08-2025 256K 32K ga open
Command A Translate command-a-translate-08-2025 8K 8K ga open
Command A Vision command-a-vision-07-2025 128K 8K ga open
Embed English v3.0 embed-english-v3.0 512 ga
Embed English Light v3.0 embed-english-light-v3.0 512 ga
Embed Multilingual v3.0 embed-multilingual-v3.0 512 ga
Embed Multilingual Light v3.0 embed-multilingual-light-v3.0 512 ga
Rerank 4 Pro rerank-v4.0-pro 32K ga
Rerank 4 Fast rerank-v4.0-fast 32K ga
Rerank 3.5 rerank-v3.5 4K ga
Rerank English v3.0 rerank-english-v3.0 4K ga
Rerank Multilingual v3.0 rerank-multilingual-v3.0 4K ga
Parse 5 parse-v5.0 8.2K ga
Cohere Transcribe cohere-transcribe-03-2026 ga open
Cohere Transcribe Arabic cohere-transcribe-arabic-07-2026 ga open
Aya Vision 32B c4ai-aya-vision-32b 16K 4K ga open
Tiny Aya Global tiny-aya-global 8K 8K ga open
Tiny Aya Earth tiny-aya-earth 8K 8K ga open
Tiny Aya Fire tiny-aya-fire 8K 8K ga open
Tiny Aya Water tiny-aya-water 8K 8K ga open

D Official references