api/endpoints/agent-chat.md

Agent Chat

Request

POST /api/v1/agent/chat

Body:

{
  "message": "Summarize launch notes",
  "notePath": "notes/launch.md",
  "channel": "web"
}

Fields:

  • message (required)
  • notePath (optional)
  • channel (optional: telegram, whatsapp, web)

Example

curl -X POST http://localhost:3000/api/v1/agent/chat \
  -H "X-Mino-Key: <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{"message":"What changed this week?"}'