Open Source · Local-First · $0 Monthly

ABUZ8 API

Connect to 156+ AI tools via REST API. Open source, local-first, zero monthly fees. Build integrations, automate workflows, scale without limits.

Quick Start

Installation

Install the ABUZ8 CLI to get started:

npm install -g @abuz8/cli
# or
pip install abuz8-cli

Authentication

ABUZ8 API uses API keys for authentication. Get your key from ABUZ8 Store.

export ABUZ8_API_KEY="your-api-key-here"

Endpoints

🎨 Image Generator

Generate images with AI. Support for 10+ styles.

POST /api/v1/image/generate

✍️ Content Writer

Write blog posts, ads, emails, and more.

POST /api/v1/content/write

🎵 Music Creator

Generate music in any genre. Full control.

POST /api/v1/music/create

🎬 Video Creator

Create videos from text or images.

POST /api/v1/video/create

🤖 Agent Runner

Run 266+ agent prompts. Autonomous workflows.

POST /api/v1/agent/run

🔍 Search & Research

Search the web, extract content, summarize.

POST /api/v1/search

SDKs & Libraries

🐍 Python

pip install abuz8-sdk
from abuz8 import ABUZ8

client = ABUZ8(api_key="your-key")
image = client.image.generate("a cat")

🟨 Node.js

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

go get github.com/abuz8/go-sdk

client := abuz8.NewClient("your-key")
image, _ := client.Image.Generate("a cat")

Examples

📝 Write a Blog Post

curl -X POST https://api.abuz8.com/v1/content/write \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"topic": "AI agents", "tone": "professional", "length": "long"}'

🎨 Generate an Image

curl -X POST https://api.abuz8.com/v1/image/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"prompt": "a futuristic city", "style": "cyberpunk"}'

Rate Limits

Free Tier

  • 100 requests/day
  • Standard models
  • Community support

Pro Tier

  • 10,000 requests/day
  • Fast models
  • Priority support

Enterprise

  • Unlimited requests
  • All models
  • Dedicated support