Client Compatibility
The tools, frameworks, and SDKs below are verified against SeaLink. Each entry lists supported endpoints, model capabilities, known limits, and sample code. New tools are added continuously.
OpenAI SDK
officialFull chat completions, streaming, tool calling. The default integration path — set base_url to SeaLink and use your existing OpenAI SDK code.
Example
from openai import OpenAI
client = OpenAI(
base_url="https://api.sealink.asia/v1",
api_key="<your-sealink-key>",
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)Anthropic SDK
officialDirect Messages API endpoint. Works with the Anthropic Python/TypeScript SDK — change base_url only.
Example
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic({
baseURL: "https://api.sealink.asia/anthropic/v1",
apiKey: "<your-sealink-key>",
});
const msg = await client.messages.create({
model: "claude-sonnet-4-6",
max_tokens: 1024,
messages: [{ role: "user", content: "Hello" }],
});
console.log(msg.content[0].text);Cursor
ai-ideSet SeaLink as your OpenAI-compatible provider in Cursor settings. Use any chat model for inline edits and Copilot-style completion.
Example
# Cursor Settings → Models → OpenAI API Key
# Set:
# Base URL: https://api.sealink.asia/v1
# API Key: <your-sealink-key>
#
# Then select a model from the model picker.Claude Code
ai-ideConnect Claude Code to SeaLink as an Anthropic-compatible provider. Use Opus/Sonnet/Haiku for agentic coding sessions.
Example
# .claude/settings.json
{
"apiKeyHelper": "echo $ANTHROPIC_API_KEY",
"baseURL": "https://api.sealink.asia/anthropic/v1"
}Dify
low-codeAdd SeaLink as an OpenAI-compatible model provider in Dify. All chat models available for Dify workflows, chatbots, and RAG pipelines.
Example
# Dify → Settings → Model Provider → OpenAI-API-compatible
# Add provider:
# API Base: https://api.sealink.asia/v1
# API Key: <your-sealink-key>
#
# All chat models appear in the model selector.n8n
low-codeUse SeaLink with n8n's OpenAI node. Any chat model can power automation workflows — set base URL and key in the OpenAI credentials.
Example
# n8n → Credentials → OpenAI API
# Set:
# API Base URL: https://api.sealink.asia/v1
# API Key: <your-sealink-key>
#
# Use the "OpenAI" node in any workflow.Don't see your tool?
SeaLink is compatible with the OpenAI and Anthropic protocols. Most tools that support a custom base URL work out of the box. Tell us what tool you use and we'll verify it with real traffic and update this page.