SDKs & Libraries

Official SDKs for popular programming languages. Build with your favorite tools.

Python SDK

Official Python SDK for Hooble

View Docs →
bash
pip install hooble
rust
from hooble import Client
client = Client(api_key="your-key")
agent = client.create_agent(...)

JavaScript SDK

Official JavaScript/TypeScript SDK

View Docs →
bash
npm install hooble
rust
import { HoobleClient } from 'hooble';
const client = new HoobleClient({
apiKey: 'your-key'
});

Rust SDK

Official Rust SDK for Hooble

View Docs →
bash
cargo add hooble
rust
use hooble::Client;
let client = Client::new("your-key")?;
let agent = client.create_agent(...)?;

Community SDKs

Community-maintained SDKs for other languages:

Go SDK
PHP SDK
Ruby SDK