Quickstart

Get started with SeaCloud API in 5 minutes. This guide shows how to use LLM models and multi-modal models.

Before you begin, you need an API key. Go to Settings to create one.

Get Your API Key

1

Visit Account Settings

Go to your Account Settings.

2

Create API Key

Click "Create API Key".

3

Save Your Key

Copy and save the key (shown only once).

Use LLM Models (Text Chat)

Chat with any LLM model. Here are complete code examples:

curl 'https://openresty-gateway.api.seaart.ai/llm/chat/completions' \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [
      {"role": "user", "content": "Hello! Can you explain what SeaCloud is?"}
    ]
  }'

Use AI Agents (Specialized Capabilities)

AI Agents are specialized AI assistants with tool-calling and multi-modal capabilities:

Visit Agent Studio to browse available Agents, or see Agent API docs for detailed usage.

Use Multi-Modal Models (Image Generation)

Generate images using Google Gemini 3 Pro Image. This example shows how to call multi-modal models:

Use Content Safety API

Content Safety API can detect inappropriate content in images and text to protect your application:

Visit Content Safety API docs to learn about detection types and parameters.

Next Steps

AuthenticationPricing

Need Help? Check out the full API reference documentation or visit our community forum for support.

Last updated