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
Visit Account Settings
Go to your Account Settings.
Security Warning: Never commit API keys to Git or share them publicly. Use environment variables to store keys.
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
AuthenticationPricingLast updated