| API Type | Capabilities | Context Window | Input | Output |
|---|---|---|---|---|
| chat_completions | chatstreamingtool_calling | 128K | $1.31 / 1M tokens | $2.63 / 1M tokens |
curl -X POST \
https://api.router.one/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "deepseek-v4-pro",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'