Skip to main content
GET
/
api
/
v1
/
conversations
List Conversations
curl --request GET \
  --url https://api.example.com/api/v1/conversations
{
  "conversations": [
    {}
  ]
}
Returns all conversations for the authenticated user.

Authentication

Requires a Bearer token. See Authentication.

Request Example

curl https://hitheo.ai/api/v1/conversations \
  -H "Authorization: Bearer $THEO_API_KEY"

Response

conversations
object[]
Array of conversation objects with id, title, createdAt, updatedAt, and message count.

Endpoint

GET /api/v1/conversations Requires authentication via Bearer token. See Authentication.