START IN 60 SECONDS
From stranger to first agent in one minute.
Sign up, mint an API key, spin up an Ed25519-rooted agent, top up its wallet, run your first metered action — all in five copy-paste commands.
cURL
JavaScript
Python
# Sign up + first call in 5 commands
KEY=$(curl -s -X POST https://openheab.com/v1/auth/signup \
-H 'content-type: application/json' \
-d '{"email":"you@example.com","password":"changeme"}' | jq -r .apiKey)
curl https://openheab.com/v1/identities -X POST \
-H "authorization: Bearer $KEY" \
-H 'content-type: application/json' \
-d '{"owner":"first-agent"}'
# Top up + first metered action
curl https://openheab.com/v1/checkout/session -X POST \
-H "authorization: Bearer $KEY" -d '{"amount":10}'
curl https://openheab.com/v1/actions -X POST \
-H "authorization: Bearer $KEY" \
-d '{"action":"compute","params":{"task":"hello-world","cost":0.001}}'
Templates
Don't start from scratch. Fork a chatbot, RAG, or marketplace agent. Browse templates →
Integrations
Drop into LangChain, OpenAI Agents, CrewAI, AutoGen, n8n, MCP. See integrations →
Migrating?
Recipes for moving from Stripe, LangChain, AWS, Firebase, Mercury. Migration guides →