SDK overview
Last updated: 2026-06-01
Drömlik publishes official SDKs that wrap the REST API and event channels so you don't have to handle authentication, token refresh, retries, or webhook signature verification by hand.
Available SDKs
| Language | Package | Status |
|---|---|---|
| JavaScript / TypeScript | @dromlik/sdk (npm) | Stable |
| Python | dromlik (PyPI) | Stable |
| Go | github.com/dromlik/sdk-go | Beta |
| C# / .NET | Dromlik.Sdk (NuGet) | Beta |
What every SDK does for you
- Exchange API key + secret for an access token, refresh proactively.
- Retry on 429 with exponential backoff, honouring
Retry-After. - Type-safe request and response models for every endpoint.
- Webhook signature verification helper.
- Realtime event subscription over WebSocket with auto-reconnect.
For the JS/TS quick start, see JavaScript SDK.