it's free*.ai

Cohere

Trial key with no expiry. Strong at RAG, embeddings and rerank.

Cohere’s Command models are built for RAG: embeddings, rerank and long-document chat on one key. The trial key does not expire and needs no card, but it is licensed for prototypes, not production.

1,000 requests a month, 20 a minute, and Command A (command-a-03-2025) reaches 256K of context. Command A+ is command-a-plus-05-2026. The OpenAI-shaped path is /compatibility/v1; Cohere’s own API lives at /v2.

Free models
12
Max context
256K
Free tier
1,000 requests per month
Requirement
Email account, no card

Endpoint

Base URLhttps://api.cohere.com/compatibility/v1
Env varCOHERE_API_KEY
Rate limit20 requests/minute, 1,000 requests/month

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api.cohere.com/compatibility/v1',
  apiKey: process.env.COHERE_API_KEY
})

const response = await client.chat.completions.create({
  model: 'command-a-03-2025',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

console.log(response.choices[0].message.content)

Worth knowing

Models you get for free12