Connect to 156+ AI tools via REST API. Open source, local-first, zero monthly fees. Build integrations, automate workflows, scale without limits.
Install the ABUZ8 CLI to get started:
npm install -g @abuz8/cli
# or
pip install abuz8-cli
ABUZ8 API uses API keys for authentication. Get your key from ABUZ8 Store.
export ABUZ8_API_KEY="your-api-key-here"
Generate images with AI. Support for 10+ styles.
POST /api/v1/image/generate
Write blog posts, ads, emails, and more.
POST /api/v1/content/write
Generate music in any genre. Full control.
POST /api/v1/music/create
Create videos from text or images.
POST /api/v1/video/create
Run 266+ agent prompts. Autonomous workflows.
POST /api/v1/agent/run
Search the web, extract content, summarize.
POST /api/v1/search
pip install abuz8-sdk
from abuz8 import ABUZ8
client = ABUZ8(api_key="your-key")
image = client.image.generate("a cat")
npm install @abuz8/sdk
const ABUZ8 = require('@abuz8/sdk')
const client = new ABUZ8({apiKey: "your-key"})
const image = await client.image.generate("a cat")
go get github.com/abuz8/go-sdk
client := abuz8.NewClient("your-key")
image, _ := client.Image.Generate("a cat")
curl -X POST https://api.abuz8.com/v1/content/write \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"topic": "AI agents", "tone": "professional", "length": "long"}'
curl -X POST https://api.abuz8.com/v1/image/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"prompt": "a futuristic city", "style": "cyberpunk"}'