Skip to content

Checking NordRouter via Reqable

  1. Create a new REST Request.
  2. Method: POST.
  3. URL: https://nordrouter.com/v1/chat/completions.
  4. In Auth select Bearer Token and paste the key sk-nr-….
  5. Add Content-Type: application/json.
  6. Paste JSON:
json
{
  "model": "anthropic/claude-sonnet-4.6",
  "messages": [{ "role": "user", "content": "Ответь: работает" }]
}

Click Send. A successful response has HTTP 200 and the text is at choices[0].message.content.

Official website:Reqable.

All programs