For developers
One API. The full SRRT model family.
Bring research-grade reasoning into your own product with a single, versioned endpoint. Streaming, tool use, and long-context memory included.
Quickstart
Three endpoints to start
Every SRRT product is reachable from the same API key and the same request shape.
POST /v1/research/summarize
POST /v1/code/complete
POST /v1/math/solve
cURL
Python
JavaScript
# Ask SRRT Research to summarize a paper
curl https://api.srrt.ai/v1/research/summarize \
-H "Authorization: Bearer $SRRT_KEY" \
-d '{
"source": "arxiv:2506.19214",
"depth": "detailed"
}'
# pip install srrt
from srrt import Client
client = Client(api_key="SRRT_KEY")
result = client.research.summarize(
source="arxiv:2506.19214",
depth="detailed"
)
print(result.summary)
// npm install @srrt/sdk
import { Client } from "@srrt/sdk";
const client = new Client({ apiKey: "SRRT_KEY" });
const result = await client.research.summarize({
source: "arxiv:2506.19214",
depth: "detailed",
});
Built for production
Secure by default
Private by default
API requests are never used to train shared models unless you explicitly opt in.
Encrypted in transit & at rest
TLS everywhere, with customer-managed key options on Custom plans.