OpenSIN API Platform Documentation

Developer quickstart

Make your first API request in minutes.

Learn the basics of the OpenSIN platform with the same calm, high-signal layout used by the reference experience.

ShellCopy
bun add @opensin/sdk
JavaScriptCopy
import { AgentLoop } from '@opensin/sdk';

const loop = new AgentLoop();
const response = await loop.run('Write a short bedtime story about a unicorn.');

console.log(response.outputText);
PythonCopy
from opensin_ouroboros import AgentLoop

loop = AgentLoop()
response = loop.run('Write a short bedtime story about a unicorn.')

print(response.output_text)
C#Copy
using OpenSIN.SDK;

var client = new OpenSINClient();
var response = client.CreateResponse("Write a short bedtime story about a unicorn.");

Console.WriteLine(response.OutputText);

Build paths

Models

View all

Start with OpenSIN API for complex workflows, or choose OpenSIN mini for lower-latency, lower-cost workloads.

Start building