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
Official SDK for Node.js and browser environments with full TypeScript support.
50k+
1200
npm install @bizkithub/sdk
Pythonic SDK with async support and comprehensive error handling.
25k+
800
pip install bizkithub-sdk
Modern PHP SDK with PSR-4 autoloading and Composer support.
15k+
450
composer require bizkithub/sdk
Elegant Ruby SDK following Rails conventions and best practices.
8k+
320
gem install bizkithub-sdk
Lightweight Go SDK with context support and built-in retry logic.
12k+
600
go get github.com/bizkithub/sdk-go
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.