Synorb
REST API

Fetch streams, Manifests, and account state from regular backend code.

Use the REST API for scheduled jobs, deterministic polling, product surfaces, or any workflow that wants ordinary request and response contracts.

Start Here

1. Get keys. Create Starter credentials at /keys. The API secret is shown once.
2. Send both headers. REST calls use api-key and secret.
3. Fetch a small page first. Start with account state or stream inventory before pulling Manifests.
curl -H "api-key: YOUR_API_KEY" \
  -H "secret: YOUR_API_SECRET" \
  "https://api.synorb.com/streams?page_size=5"

Common Paths

When to Use REST

Choose REST when your application owns the workflow and needs predictable backend calls. Choose MCP when an interactive assistant should discover streams, select tools, and retrieve context during an agent loop.