Models supported
At a glance
| Model | Model ID |
|---|---|
| DeepSeek V4 Flash 0731 | deepseek-v4-flash-0731 |
| GLM 5.3 Flash | glm-5.3-flash |
| GLM 5.2 | glm-5.2 |
| Kimi K3 | kimi-k3 |
| MiniMax M3 | minimax-m3 |
| Gemma 4 31B | gemma-4-31b |
Usage examples
DeepSeek V4 Flash 0731
cURL
curl -sS https://api.terminal.fyi/v1/chat/completions \
-H "Authorization: Bearer $TERMINAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-flash-0731",
"messages": [
{
"role": "user",
"content": "Review this implementation and identify the highest-impact improvement."
}
],
"max_tokens": 1000
}' | jq
GLM 5.3 Flash
cURL
curl -sS https://api.terminal.fyi/v1/chat/completions \
-H "Authorization: Bearer $TERMINAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "glm-5.3-flash",
"messages": [
{
"role": "user",
"content": "Review this repository and propose the highest-impact implementation change."
}
],
"max_tokens": 1000
}' | jq
GLM 5.2
cURL
curl -sS https://api.terminal.fyi/v1/chat/completions \
-H "Authorization: Bearer $TERMINAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "glm-5.2",
"messages": [
{
"role": "user",
"content": "Summarize the key technical decisions in this design document."
}
],
"max_tokens": 1000
}' | jq
Kimi K3
cURL
curl -sS https://api.terminal.fyi/v1/chat/completions \
-H "Authorization: Bearer $TERMINAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kimi-k3",
"messages": [
{
"role": "user",
"content": "Turn these product requirements into an implementation plan."
}
],
"max_tokens": 1000
}' | jq
MiniMax M3
cURL
curl -sS https://api.terminal.fyi/v1/chat/completions \
-H "Authorization: Bearer $TERMINAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax-m3",
"messages": [
{
"role": "user",
"content": "Create a concise implementation plan for adding webhook retries."
}
],
"max_tokens": 1000
}' | jq
Gemma 4 31B
cURL
curl -sS https://api.terminal.fyi/v1/chat/completions \
-H "Authorization: Bearer $TERMINAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemma-4-31b",
"messages": [
{
"role": "user",
"content": "Extract three action items from these release notes."
}
],
"max_tokens": 1000
}' | jq