Documentation
Getting Started
Run the Syntra platform locally, create an API key, and send your first message through Kong.
Eleven API products sit behind Kong — Engage, Flow, Route, Verify, Inbox, AI, CRM, Voice, Insights, Identity, and Billing. Use the developer console for channels, IVR, flows, and billing, or call the REST APIs directly.
Base URLs
- Production API: https://api.syntra.io
- Local gateway (Docker): http://localhost:8000
- Developer Console (local): http://localhost:3000
Local quick start
- Clone syntra-platform and run make up from the platform root
- Open the console at http://localhost:3000 and sign in with your API key
- Use the demo key sk_test_syntra_dev_key for local development
Send your first messagecURL
curl -X POST http://localhost:8000/v1/route/messages \
-H "X-API-Key: sk_test_syntra_dev_key" \
-H "Content-Type: application/json" \
-d '{
"channel": "whatsapp",
"to": "+233241234567",
"body": "Hello from Syntra"
}'All /v1/* requests through Kong are authenticated. Kong introspects your API key via Identity and forwards X-Syntra-* context headers to upstream services.