# Synorb safe test path

This is Synorb's canonical sandbox/test documentation entry point. It is not
a separate account or isolated data environment: Synorb does not currently
offer a separate sandbox host.

## Non-mutating test

With an existing Synorb Key, validate request shape and scope before pulling
content:

    curl -sS -X POST https://api.synorb.com/manifests/plan \
      -H "Authorization: Bearer $SYNORB_KEY" \
      -H "Content-Type: application/json" \
      -d '{"stream_ids":["STREAM_ID"],"page_size":1}'

POST /manifests/plan is a zero-quota preview. It does not return Manifests,
does not bill Manifest quota, and does not mutate account data. The returned
plan_token is only for an unchanged execution request at
POST /manifests/exec; do not execute if you only want a dry run.

## Get a free key

GET https://synorb.com/connect self-serves a 24 Hour Agent Demo key without
an email or card. It creates a demo account, so use it only when you need a
new credential; the plan preview above is the non-mutating test itself.

- [Connect](https://synorb.com/connect)
- [API docs](https://synorb.com/docs)
- [OpenAPI contract](https://synorb.com/openapi.json)
