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.

Developer Tools

SDKs, APIs, and protocols for every stack.

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