SeaLink
← Docs

n8n integration

Call SeaLink from n8n using the HTTP Request node or the OpenAI node.

One-click n8n config

Config has the base URL pre-filled. Once you sign in, your real API key is auto-inlined.

Download n8n config

Steps

  1. 1Add an HTTP Request node in your workflow.
  2. 2Set Method to POST, URL to ${apiBaseUrl()}/v1/chat/completions.
  3. 3Add Authorization header: Bearer <your-sealink-key>.
  4. 4Add Content-Type: application/json and paste the OpenAI-format body.

Configuration

Body (JSON)
{
"model": "claude-sonnet-4-6",
"messages": [
{ "role": "user", "content": "Summarize this in one sentence: ..." }
]
}