Documentation
SDKs
Official client libraries in the developer platform workspace.
SDKs wrap the Kong gateway REST API with typed clients, automatic retries, and idempotency key support.
Available SDKs
- Node.js / TypeScript: developer-platform/sdks/node
- Python, .NET, Go, Java: in developer-platform/sdks/
Node.js
import { SyntraClient } from '@syntra/sdk';
const client = new SyntraClient({
apiKey: process.env.SYNTRA_API_KEY,
baseUrl: 'http://localhost:8000',
});
await client.route.messages.send({
channel: 'whatsapp',
to: '+233241234567',
body: 'Hello from Syntra',
});