Skip to content
Home

Base Configuration

SeaCloud LLM public endpoints use the fixed /llm prefix.

https://cloud.seaart.ai/llm

Authentication supports Authorization: Bearer and x-api-key. New integrations should use Bearer.

Authorization: Bearer {apiKey}
x-api-key: {apiKey}
HeaderRequiredDescription
AuthorizationYesBearer {apiKey}
Content-TypeRecommended for POST requestsPublic POST endpoints in this document use application/json
X-Request-IdNoCaller-defined request ID. The platform generates one automatically if omitted

The SDK base_url below only applies to Chat Completions. Responses API uses the separate public path https://cloud.seaart.ai/llm/openai/v1/responses.

from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://cloud.seaart.ai/llm/v1",
)
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.SEACLOUD_API_KEY,
baseURL: "https://cloud.seaart.ai/llm/v1",
});