curl --request POST \
--url https://agent-studio.thena.ai/api/v1/chat/{agent_id}/threads/{thread_id}/messages/stream \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"content": "<string>",
"role": "<string>",
"content_html": "<string>",
"metadata": {},
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Add a new message to a chat thread and stream the AI response.
curl --request POST \
--url https://agent-studio.thena.ai/api/v1/chat/{agent_id}/threads/{thread_id}/messages/stream \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"content": "<string>",
"role": "<string>",
"content_html": "<string>",
"metadata": {},
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Successful Response