Skip to content

Connecting n8n to NordRouter

A reliable option is the HTTP Request node: it allows you to explicitly set the endpoint.

Node setup

  1. Method: POST.
  2. URL: https://nordrouter.com/v1/chat/completions.
  3. Authentication → Header Auth:
    • Name: Authorization;
    • Value: Bearer sk-nr-ВАШ-КЛЮЧ.
  4. Header: Content-Type: application/json.
  5. Body → JSON:
json
{
  "model": "anthropic/claude-sonnet-4.6",
  "messages": [
    { "role": "user", "content": "Кратко перескажи: {{$json.text}}" }
  ]
}

Response text: {{$json.choices[0].message.content}}.

Official information:HTTP Request node.

All programs