Humuter Documentation#

Humuter is an AI agent deployment platform. Build, train, and deploy AI agents to Telegram, Discord, and any application via API — all without managing infrastructure.

Quickstart#

  1. Create an account at humuter.com
  2. Create an agent from the dashboard — choose a model and give it a system prompt
  3. Connect a channel — link Telegram, Discord, or use the API directly
  4. Chat — your agent is live and ready to respond

Quick API Example#

bash
curl -X POST https://humuter.com/api/v1/chat \
  -H "Authorization: Bearer hmt_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "your-agent-id",
    "message": "Hello!"
  }'
Get your API key from Dashboard → API Keys. All keys start with hmt_.

Next Steps#