Skip to content

Connecting Make to NordRouter

Use the HTTP module → Make a request.

  1. Method: POST.
  2. URL: https://nordrouter.com/v1/chat/completions.
  3. Headers:
    • Authorization: Bearer sk-nr-ВАШ-КЛЮЧ;
    • Content-Type: application/json.
  4. Body type: Raw, content type: JSON.
  5. Request content:
json
{
  "model": "anthropic/claude-sonnet-4.6",
  "messages": [{ "role": "user", "content": "Составь ответ клиенту" }]
}

After the first run, Make recognizes the structure. For the next module, select choices → 1 → message → content.

Official information:HTTP in Make.

All programs