Skip to main content
Documentation v1.0

Leonid Suite Documentation

Everything you need to build, deploy, and scale multi-tenant applications with enterprise-grade authentication and permissions

Quick Start Code Example

Quick Start

npm install @leonid-suite/sdk

import { LeonidClient } from '@leonid-suite/sdk';

const client = new LeonidClient({
  apiKey: process.env.LEONID_API_KEY
});

// Authenticate a user
const { user, session } = await client.auth.signIn({
  email: 'user@example.com',
  password: 'secure-password'
});

Getting Started

Official SDKs

Install our official SDK for your preferred language

npm install @leonid-suite/sdk
TypeScript / JavaScript
pip install leonid-suite
🐍 Python

Need Help?