Products Live Demo About Pricing Developers Contact
Sign in Get Started
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
Request API access
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.