Generate API Keys
API keys let you access Synced programmatically — via the REST API, MCP server, or SDK.
Create an API Key
- Log in to app.meetsynced.com
- Go to Settings → API Keys
- Click Generate New Key
- Give it a descriptive name (e.g., "Claude MCP" or "Production API")
- Copy the key immediately — it's only shown once
Store securely
API keys grant full access to your calendar data. Never commit them to version control or share them in public channels. Use environment variables instead.Key Scopes
Each API key has the following default scopes:
calendar:read— Read meetings, availability, and calendar eventscalendar:write— Create, update, and cancel meetingscontacts:read— Read trusted contacts list
Using Your API Key
REST API
curl https://api.meetsynced.com/v1/meetings \
-H "Authorization: Bearer sk_live_your_api_key"MCP Server
SYNCED_API_KEY=sk_live_your_api_keySDK
const synced = new Synced({
apiKey: process.env.SYNCED_API_KEY
});Managing Keys
You can view, rename, and revoke API keys from the Settings page. Revoking a key immediately invalidates it — any applications using that key will stop working.