n8n

In n8n, the safest route is the HTTP Request node.

That keeps the host, headers, and body completely explicit. Use the built-in OpenAI node only if your n8n build lets you override the base URL cleanly.

Install n8n first

Use n8n Cloud or run it locally. For a local test, install a Node.js version supported by n8n, start n8n with npx, open http://localhost:5678, then create the HTTP Request node shown below.

What to installOfficial sourceQuick check
Node.js and npmNode.js downloadn8n npm installs require Node.js 20.19 through 24.x. Check with node --version and npm --version.
n8n local installn8n npm install docsnpx n8n starts a local test instance at http://localhost:5678.
CorvusLLM keyBuy or top up balanceUse it in the Authorization header.
Local n8n test
node --version
npm --version
npx n8n
# Then open http://localhost:5678

Zero-to-working setup

Use this block when you want the shortest reliable path from a clean install to one successful n8n request through CorvusLLM.

2
Configure

Create an HTTP Request node and set Method, URL, Authorization, headers, and JSON body directly in the node.

  • Add an HTTP Request node
  • Set Method to POST and URL to https://base.corvusllm.com/v1/chat/completions
  • Set Authorization Bearer header and JSON body
3
Verify
  • Run the node once before adding loops or agents
  • Inspect status code, response body, and error text in the execution view

The node execution returns HTTP 200 with a response body before loops, agents, or scheduled workflows are added.

ValuePaste this
Method POST
URL https://base.corvusllm.com/v1/chat/completions
Authorization Bearer YOUR_CORVUSLLM_KEY
Body model gpt-5.5
Setup guardrail

Prefer HTTP Request node because it exposes URL, headers, and body directly.

HTTP Request node

Inside the workflow editor, add an HTTP Request node and set the request fields directly. This avoids hidden defaults from provider-specific nodes.

n8n fieldWhere to change itValue
MethodHTTP Request node > ParametersPOST
URLHTTP Request node > URLhttps://base.corvusllm.com/v1/chat/completions
AuthenticationHTTP Request node > Authentication or HeadersBearer token with your CorvusLLM key
HeaderHeaders table if you configure auth manuallyAuthorization: Bearer YOUR_CORVUSLLM_KEY
Body content typeBody settingsJSON
Body JSON
{
  "model": "gpt-5.5",
  "messages": [
    {
      "role": "user",
      "content": "Say n8n-ok"
    }
  ]
}

Test and inspect response

Run the node once before placing it inside a larger workflow. In the n8n execution view, inspect the status code, response body, and any error text before adding loops, agents, or downstream processing.

ResultMeaningNext step
Text response appearsAuth, URL, model, and JSON body work.Connect the node to the rest of the workflow.
401 or auth errorHeader or key is wrong.Rebuild the Authorization header as Bearer YOUR_CORVUSLLM_KEY.
429The key is out of balance.Top up, then rerun the same node.

Why this path

This path is explicit and reliable. You always know which URL, headers, and payload n8n is sending.

Topic map

Continue with the right source

Open the exact setup, model, billing, and troubleshooting pages instead of guessing configuration values.

docs Set up CorvusLLM without guessing. Overview: The clean start page: base URLs, model overview, environment overview, and where to begin. docs API base URLs and request paths. API Overview: Base URLs, authentication, request formats, OpenAI-compatible vs Anthropic-native paths. docs Use the canonical customer slug and keep it simple. Models & Slugs: Every customer-facing model with one customer slug, provider family, pricing. docs Most CorvusLLM issues are the same four mistakes. Troubleshooting: Clear fixes for wrong base URLs, bad model slugs, out-of-balance errors, delivery questions. trust Trust Center The Trust Center explains affiliation, data handling, support, refunds, compatibility evidence, pricing methodology. trust How to Verify CorvusLLM Before You Buy The verification checklist shows how to test CorvusLLM claims, endpoint setup, pricing data, status, legal pages. trust Proof of Operations Proof of Operations collects public evidence assets, published data, operational boundaries. status Checking current status The status page shows customer-facing live checks for website, checkout, customer login, and API compatibility routes. faq Frequently Asked Questions CorvusLLM FAQ and help center with searchable answers about pricing, refunds, delivery, API setup, Cursor, Claude Code. docs Buy, paste, test, and verify your balance in minutes. Quickstart: The shortest safe path from purchase to a working request and a visible balance in the dashboard. docs bills against the customer key balance and stops at zero. Billing, Balance & Cache: How prepaid balance works, how same-key top-ups work, how usage deductions, out-of-balance behavior. docs Choose the path once, then stay consistent. Environment Overview: Every supported environment at a glance: which base URL to use, where to paste the key. models AI Models The CorvusLLM model catalog directory helps users find current customer-facing model families, public slugs, pricing context.
Browse docs
On this page