Home/Documentation/SDKs

Tooling 3 languages

SDKs

Official client libraries for the Konera CAMARA APIs. Each SDK handles OAuth2 token management, request signing, retries, and typed responses — so you call a method instead of building HTTP plumbing. Available for JavaScript/TypeScript, Python, and Java.

JavaScript / TypeScriptNode 18+Fully typed client for Node and modern bundlers, with first-class TypeScript definitions for every API.
npm install @konera/sdk
View on GitHub →
Python3.9+Pythonic client with sync and async support, type hints, and automatic token refresh.
pip install konera
View on GitHub →
Java11+JVM client with builder-style requests, suitable for Spring and plain Java services.
<dependency>
<groupId>com.konera</groupId>
<artifactId>konera-sdk</artifactId>
<version>1.0.0</version>
</dependency>
View on GitHub →

Quick start

A verified call with the JavaScript SDK — authentication is handled for you:

import { Konera } from "@konera/sdk";

const konera = new Konera({ clientId: process.env.KONERA_CLIENT_ID, clientSecret: process.env.KONERA_CLIENT_SECRET, });

const result = await konera.numberVerification.verify({ phoneNumber: "+14155550123", });

console.log(result.devicePhoneNumberVerified); // true

Package names and repository links above are placeholders — replace them with Konera's published package identifiers and repo URLs before going live.