Skip to main content
GET
/
v1
/
mind
/
conversations
List Conversations Route
curl --request GET \
  --url http://localhost:8000/v1/mind/conversations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "action": "<string>",
      "channel": "<string>",
      "conversation_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "last_message_at": "2023-11-07T05:31:56Z",
      "status": "<string>",
      "title": "<string>",
      "turn_count": 123
    }
  ],
  "page": 123,
  "page_size": 123,
  "total": 123,
  "total_pages": 123,
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Enter your JWT access token

Query Parameters

page
integer
default:1
Required range: x >= 1
page_size
integer
default:20
Required range: 1 <= x <= 100

Response

Successful Response

data
ConversationSummary · object[]
required
page
integer
required
page_size
integer
required
total
integer
required
total_pages
integer
required
message
string | null
success
boolean
default:true