Pricing
Start for free. Scale as you grow. All model costs included.
Perfect for experimentation
For developers & startups
For teams & organizations
| Feature | Free | Pro | Enterprise |
|---|---|---|---|
| Deployed agents | 100 | 1,000 | 10,000 |
| Invocations/day | 3,000 | 10,000 | 100,000+ |
| Requests/minute | 100 | 100 | 1,000+ |
| SDK scopes | invoke | deploy, invoke, manage | All + admin |
| Models included | All | All | All + Custom |
| Streaming responses | |||
| Session memory | |||
| Analytics retention | 7 days | 90 days | Unlimited |
| Support | Community | Email (24h) | 24/7 Dedicated |
| SLA | — | 99.9% | 99.99% |
Works with your code
Your code doesn't change when you upgrade. The SDK automatically uses your plan's rate limits and scopes.
from hikigai import Hikigai
client = Hikigai() # Uses HIKIGAI_API_KEY
# Check your usage
usage = client.usage()
print(f"Used: {usage.invocations_used}")
print(f"Remaining: {usage.invocations_limit}")
# Rate limit info in response
response = agent.invoke("Hello")
# Response headers:
# X-RateLimit-Limit: 100
# X-RateLimit-Remaining: 95
# X-RateLimit-Reset: 1704153600Each time you call agent.invoke() or POST /agents/{id}/invoke counts as one invocation, regardless of response length or tokens used.
Scopes control what your API key can do. "invoke" lets you use agents. "deploy" lets you create agents. "manage" lets you update/delete agents.
Yes, you can change your plan at any time. Upgrades take effect immediately. Downgrades take effect at the next billing cycle.
No! Your Hikigai plan includes all infrastructure costs. Model tokens (Claude, Llama, etc.) are included in your plan pricing.
You'll receive a 429 error with a Retry-After header. The SDK automatically handles retries with exponential backoff.
Yes, Pro comes with a 14-day free trial. No credit card required to start.
Deploy your first agent in minutes. Free forever to start.