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.
| Method | POST |
| Path | /v1/chat |
| Auth | Authorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set |
| Category | chat |
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.