Back to ModelsBack to Models
Apertus 8B Instruct
Swiss AI Initiative6/ 57
Intelligence Score
Intelligence
6
#201 of 203 (top 99%)
Speed
N/A
Not measured
Price
$0.13
per M tokens
#17 cheapest of 136
Context Window
65.5K
tokens
Latency: N/A
Score Breakdown
Quality Score10%
Speed Score0%
Cost Score99%
Similar Models
LFM2.5-VL-1.6B
Liquid AI
6intelligence
Granite 4.0 350M
IBM
6intelligence
Granite 4.0 1B
IBM
7intelligence
LFM2 8B A1B
Liquid AI
7intelligence
Granite 4.0 H 350M
IBM
5intelligence
Use This Model
Claude Code
claude --model apertus-8b-instructAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "apertus-8b-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-8b-instruct"),
prompt: "Hello",
});