SynchronexBack to synchronex.ai
Docs
Synchronex

Getting Started

OverviewQuickstartAuthentication

Core Concepts

Identity KernelMemoryDecisions FeedAI WorkersWorkspaces / Teams

Integration

REST APIMCP ServerMCP ToolsCloud Developer ModeOAuthSendinelBYOK

Reference

API ReferenceChangelog

Getting Started

Authentication

Synchronex supports user-generated API keys and OAuth access tokens.

5 min read

Token Types

TokenUsed forScope
sx_live_*REST API and MCP server authGenerated in settings and scoped to the user/key
sxo_*OAuth-connected apps and Cloud Developer ModeIssued 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

TierDaily requests
Free500/day
Pro10,000/day
Team50,000/day
EnterpriseCustom

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.