Official SDKs

Speed up your development with our official SDKs. Built and maintained by the BizKitHub team with comprehensive documentation and examples.

✨ What's included

Type-safe API client
Automatic retry logic
Built-in error handling
Request/response logging
Rate limiting support
Webhook verification
Comprehensive documentation
Active community support
🟨

JavaScript/TypeScript

v2.1.0

Official SDK for Node.js and browser environments with full TypeScript support.

50k+
1200
npm install @bizkithub/sdk
🐍

Python

v1.8.2

Pythonic SDK with async support and comprehensive error handling.

25k+
800
pip install bizkithub-sdk
🐘

PHP

v1.5.1

Modern PHP SDK with PSR-4 autoloading and Composer support.

15k+
450
composer require bizkithub/sdk
💎

Ruby

v1.3.0

Elegant Ruby SDK following Rails conventions and best practices.

8k+
320
gem install bizkithub-sdk
🐹

Go

v1.2.3

Lightweight Go SDK with context support and built-in retry logic.

12k+
600
go get github.com/bizkithub/sdk-go

Java

v1.4.0

Enterprise-ready Java SDK with Maven and Gradle support.

18k+
520
See documentation for Maven/Gradle setup

Quick Start Example

Get started with the JavaScript SDK in just a few lines of code:

import { BizKitHubClient } from '@bizkithub/sdk';

const client = new BizKitHubClient({
  apiKey: 'your-api-key'
});

// Get all users
const users = await client.users.list();

// Create a new user
const newUser = await client.users.create({
  email: 'john@example.com',
  name: 'John Doe'
});

Community SDKs

⚠️ Community Maintained

These SDKs are maintained by the community. While we appreciate the effort, we recommend using our official SDKs for production applications.

C# / .NET

Community

Unofficial .NET SDK with support for .NET Core and Framework.

View on GitHub

Rust

Community

Fast and safe Rust SDK with async/await support.

View on GitHub