MINARA

Synchronous chat

POST /v1/chat — Single agent turn. The request body is queued, the agent runs to completion (or error), and the final assistant message

POST /v1/chat

Single agent turn. The request body is queued, the agent runs to completion (or error), and the final assistant message is returned.

MethodPOST
Path/v1/chat
AuthAuthorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set
Categorychat

Request body

{ "message": "buy $50 of SOL" }

Response body

{ "reply": "...", "toolCalls": [ ... ] }

Notes

Long-running. For interactive UIs, prefer /v1/chat/stream to see intermediate tool calls as they happen.

On this page