Developers
API-first platform for engineering teams
Esniva is built for builders with robust APIs, ergonomic SDKs, and clear docs.
Developer Workflow
- - API-first philosophy with stable contracts
- - Type-safe SDK integrations for JavaScript and TypeScript
- - Documentation preview with quickstart guides
- - GitHub integration for CI/CD and deployment checks
Esniva API Usageesniva-sdk.ts
import { Esniva } from "@esniva/sdk";
const client = new Esniva({ apiKey: process.env.ESNIVA_API_KEY });
await client.auth.createUser({
email: "builder@startup.dev",
password: "secure-password",
});
const metrics = await client.analytics.events.query({
range: "last_30_days",
metric: "activation_rate",
});
console.log(metrics);