One API · 33 Services · 200+ Models

Hanzo AI Cloud

AI infrastructure for developers. Build, deploy, and scale intelligent applications.

$curl hanzo.sh | sh

Installs the hanzo CLI. Then hanzo login to get started.

Quick Start

Install the CLI, log in, and start using every Hanzo service from your terminal.

Terminal
# Install the Hanzo CLI
curl hanzo.sh | sh

# Log in (opens browser for OAuth)
hanzo login

# You're ready — try some things:
hanzo chat "Explain quantum computing"
hanzo models list
hanzo keys create my-project
hanzo deploy ./my-app
Python SDK
# Or use the Python SDK directly
pip install hanzoai

# Use with any OpenAI-compatible code
from hanzoai import Hanzo

client = Hanzo()  # reads HANZO_API_KEY
response = client.chat.completions.create(
    model="zen4",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

Ecosystem

Everything you need to build with AI. Click any card to jump to its docs.

AI
Hanzo Cloud
LLM gateway for 200+ models. Load balancing, caching, and observability.
View docs
AI
Hanzo Chat
Multi-model AI chat with MCP tools, file uploads, and 14 Zen models.
View docs
AI
Hanzo Dev
AI coding agent with IDE integration, debugging, and MCP tools.
View docs
AI
Hanzo Bot
743+ skills, 35+ channel adapters. Deploy AI bots anywhere.
View docs
Automation
Hanzo Flow
Visual workflow automation. Drag-and-drop AI pipelines.
View docs
Infra
Hanzo Platform
PaaS with git push deploy. Docker containers, SSL, scaling.
View docs
Ops
Hanzo Console
Observability dashboard. Tracing, evals, and cost tracking.
View docs
Infra
Hanzo Space
S3-compatible object storage with CDN and versioning.
View docs
AI
Hanzo Search
AI-powered search with generative UI and RAG.
View docs
Security
Hanzo Guard
AI safety, PII detection, and content moderation.
View docs
Platform
Hanzo IAM
Identity, SSO, OAuth2, SAML. Unified auth for everything.
View docs
Models
Zen
44 frontier models, 4B to 1T+. Open weights on HuggingFace.
Visit

Developer Tools

SDKs, APIs, and protocols for every stack.

SDKs
Python, TypeScript, Go, Rust, C
API Reference
OpenAPI specs for all 33 services
MCP + ZAP
260+ tools + zero-copy RPC protocol
Extensions
IDE, browser, and desktop extensions
The hanzo CLI
One tool for everything
hanzo chat
Chat with any model interactively
hanzo models list
Browse 200+ available models
hanzo keys create
Create and manage API keys
hanzo deploy
Deploy apps with git push
hanzo logs
Stream logs from any service
hanzo spaces
Manage S3-compatible storage
hanzo secrets
Manage secrets and env vars
hanzo bot
Deploy and manage AI bots
hanzo flow
Run workflow automations
Zen
44 models

Frontier AI models from 4B edge to 1T+ reasoning. MoDE (Mixture of Distilled Experts) architecture. Text, code, vision, audio, video, 3D, and safety. Open weights on HuggingFace.

zen4
~400B MoDE
zen4-coder
~200B MoDE
zen4-thinking
Deep CoT
zen3-omni
72B Multimodal
zen3-nano
4B Edge
zen3-guard
8B Safety

Start building

Free tier with generous limits. No credit card required.

curl hanzo.sh | sh