SSSAI API Platform
One API for text, vision, and embeddings.
Build with AI through a single, well-documented REST API. Official SDKs, predictable pricing, and a usage dashboard included.
quickstart.sh
curl https://api.sssai.org/v1/chat/completions \
-H "Authorization: Bearer $SSSAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "sssai-core",
"messages": [{"role": "user", "content": "Hello, SSSAI!"}]
}' Capabilities
-
Text generation
Chat and completion endpoints for drafting, rewriting, and reasoning.
-
Embeddings
High-quality vector embeddings for search, clustering, and RAG.
-
Vision
Image understanding for captioning, extraction, and classification.
Official SDKs
Get started in minutes with our Python and Node.js libraries.
quickstart.py
from sssai import SSSAI
client = SSSAI(api_key="sk-...")
resp = client.chat.create(
model="sssai-core",
messages=[{"role": "user", "content": "Hello, SSSAI!"}],
)
print(resp.output_text) Example endpoints and model names are illustrative.