Back to ModelsBack to Models
Apertus 70B Instruct
Swiss AI Initiative8/ 57
Intelligence Score
Intelligence
8
#195 of 203 (top 96%)
Speed
N/A
Not measured
Price
$1.34
per M tokens
#87 cheapest of 136
Context Window
65.5K
tokens
Latency: N/A
Score Breakdown
Quality Score13%
Speed Score0%
Cost Score88%
Similar Models
Phi-4 Mini
Microsoft
8intelligence
Exaone 4.0 1.2B
LG AI Research
8intelligence
Exaone 4.0 1.2B
LG AI Research
8intelligence
LFM2.5-1.2B-Thinking
Liquid AI
8intelligence
Jamba 1.7 Mini
AI21 Labs
8intelligence
Use This Model
Claude Code
claude --model apertus-70b-instructAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "apertus-70b-instruct",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";
const { text } = await generateText({
model: openrouter("apertus-70b-instruct"),
prompt: "Hello",
});