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.