---
title: "Chat with SuperAgent"
method: POST
path: "/v1/superagents/{agent_id}/chat"
tags: ["SuperAgent Chat"]
---

# Chat with SuperAgent

`POST /v1/superagents/{agent_id}/chat`

Send a message to a SuperAgent. Supports streaming via SSE. Each chat session is identified by a `session_id`.

## Path parameters

- `agent_id` string, uuid, required

## Request body

- AgentChatRequest
  - `message` string, required — Message to send to the agent
  - `session_id` string — Omit to start a new session
  - `stream` boolean — Set to true for SSE streaming response

## Response `200`

Agent response (non-streaming)

- AgentChatResponse — Non-streaming response. For streaming, set stream: true to receive SSE events.
  - `content` string
  - `session_id` string

## Other responses

- `401` — Invalid or revoked API key
- `404` — Resource not found
- `429` — Rate limit exceeded (60 requests per minute)

---

[API](https://skmtc.net/gigabraingg/apis/gigabrain-api.md) · [All operations](https://skmtc.net/gigabraingg/apis/gigabrain-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gigabraingg/gigabrain-api/revisions/bb4070b30d92/schema)
