Pular para o conteúdo principal
POST
/
v1
/
public
/
agents
/
conversations
/
{conversation_id}
/
messages
/
stream
Send a message (streaming)
curl --request POST \
  --url https://api.quintus.tec.br/v1/public/agents/conversations/{conversation_id}/messages/stream \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "role": "user",
  "metadata": {}
}
'
{
  "error": {
    "code": "session_token_expired",
    "context": {},
    "message": "Session token has expired. Refresh to continue.",
    "name": "SessionTokenExpiredError"
  },
  "request_id": "5f0c-...",
  "timestamp": "2026-04-27T12:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://quintus.tec.br/docs/llms.txt

Use this file to discover all available pages before exploring further.

Autorizações

Authorization
string
header
obrigatório

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Parâmetros de caminho

conversation_id
string
obrigatório

Corpo

application/json
content
obrigatório

Either a plain string (treated as a single text block) or a list of typed content blocks (text/image/file).

role
enum<string>
padrão:user
Opções disponíveis:
user,
assistant
metadata
Metadata · object

Free-form integrator storage attached to this message. Not seen by the agent.

Resposta

SSE stream of agent events.