Skip to main content

SDKs

Official client libraries in the developer platform workspace.

SDKs wrap the Kong gateway REST API with typed clients, request tracing, and idempotency key support. Use GraphQL at /v1/graphql when you prefer schema-driven queries over REST.

Available SDKs

  • Node.js / TypeScript (primary): developer-platform/sdks/node — full product coverage
  • Python: developer-platform/sdks/python — core products
  • .NET: developer-platform/sdks/dotnet — Verify, Flow, Route
Node.js
import { SyntraClient } from '@syntra/sdk';

const client = new SyntraClient({
  apiKey: process.env.SYNTRA_API_KEY,
  baseUrl: 'http://localhost:8000',
});

await client.route.send('whatsapp', '+233241234567', 'Hello from Syntra');