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/sdkpip install konera<dependency>
<groupId>com.konera</groupId>
<artifactId>konera-sdk</artifactId>
<version>1.0.0</version>
</dependency>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.