Request to NordRouter via curl
curl - the fastest way to check the key and Model ID without installing AI chat.
bash
curl https://nordrouter.com/v1/chat/completions \
-H "Authorization: Bearer sk-nr-ВАШ-КЛЮЧ" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-sonnet-4.6",
"messages": [{"role": "user", "content": "Ответь: работает"}]
}'HTTP 200 means the key, balance and model are working. On Windows, in old PowerShell, the command curl can be an alias; use curl.exe.
For streaming, add the "stream": true field and the -N flag to the JSON.