it's free*.ai

SambaNova

Llama and DeepSeek at high speed on custom hardware.

SambaNova Cloud runs seven models on its own RDU chips: Llama 3.3 70B, DeepSeek V3.1 and V3.2, MiniMax M2.7 and M3, Gemma 4 31B and GPT-OSS 120B. Fast when it answers; the free ceiling is tight — 20 requests a minute, 20 a day, 200K tokens a day.

Email, no card. MiniMax M3 takes the window to 1M. R1 left the catalogue in April 2026. OpenAI-compatible. Use it when you want those weights on custom silicon, not when you need volume.

Free models
7
Max context
1M
Free tier
20 requests per day
Requirement
Email account, no card

Endpoint

Base URLhttps://api.sambanova.ai/v1
Env varSAMBANOVA_API_KEY
Rate limit20 requests/minute, 20 requests/day, 200K tokens/day

Code examples

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api.sambanova.ai/v1',
  apiKey: process.env.SAMBANOVA_API_KEY
})

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

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

Models you get for free7