Getting Started
Authentication
Synchronex supports user-generated API keys and OAuth access tokens.
5 min read
Token Types
| Token | Used for | Scope |
|---|---|---|
| sx_live_* | REST API and MCP server auth | Generated in settings and scoped to the user/key |
| sxo_* | OAuth-connected apps and Cloud Developer Mode | Issued by Synchronex OAuth server with requested OAuth scopes |
Generate API Keys
Open Settings - MCP API Keys, create a key, choose a scope, and store the token securely. Screenshot placeholder: settings key list and create dialog.
bash
curl https://synchronex.ai/api/v1/memory/identity \
-H "Authorization: Bearer sx_live_YOUR_KEY"Rate Limits
| Tier | Daily requests |
|---|---|
| Free | 500/day |
| Pro | 10,000/day |
| Team | 50,000/day |
| Enterprise | Custom |
Auth Errors
401 means the token is missing, malformed, expired, or revoked. 403 means the token is valid but lacks scope or tier access. TIER_REQUIRED means the endpoint requires an upgraded plan.
Rotation
Create a new key, deploy it, verify traffic succeeds, then revoke the old key. Never log raw keys and never ship sx_live_* tokens to browser clients.