SDKs & Libraries

Official client libraries for every major language and platform. Build, integrate, and scale with Admin faster.

12
Official SDKs
2.4M+
Monthly Downloads
v3.2.0
Latest Stable

Quick Start Example

JavaScript
import { AdminClient } from '@admin/sdk';

// Initialize with your API key
const client = new AdminClient({
  apiKey: process.env.ADMIN_API_KEY,
  region: 'us-east-1'
});

// Create a new workspace
const workspace = await client.workspaces.create({
  name: 'Production Team',
  tier: 'enterprise',
  settings: { autoArchive: true }
});

console.log('Workspace created:', workspace.id);

Help Us Improve

Our SDKs are open source. Report bugs, suggest features, or contribute directly to the codebase.

View on GitHub → Contribution Guide