curl --request GET \
--url https://api.orq.ai/v2/conversations \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"entityId": "<string>",
"kind": "conversation",
"displayName": "<string>",
"createdAt": 123,
"updatedAt": 123,
"_id": "conv_01kd6fjj8e60f7rwm3efjhk9zf",
"createdById": "<string>",
"updatedById": "<string>",
"metadata": {
"generatingTitle": true,
"entityId": "<string>"
}
}
],
"has_more": true
}Retrieves a paginated list of conversations in your workspace. Conversations are returned sorted by creation date (newest first). Use pagination parameters to efficiently navigate through large collections.
curl --request GET \
--url https://api.orq.ai/v2/conversations \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"entityId": "<string>",
"kind": "conversation",
"displayName": "<string>",
"createdAt": 123,
"updatedAt": 123,
"_id": "conv_01kd6fjj8e60f7rwm3efjhk9zf",
"createdById": "<string>",
"updatedById": "<string>",
"metadata": {
"generatingTitle": true,
"entityId": "<string>"
}
}
],
"has_more": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
1 < x <= 10010
A cursor for use in pagination. startingAfter is a conversation ID that defines your place in the list.
"conv_01jj1hdhn79xas7a01wb3hysdb"
A cursor for use in pagination. endingBefore is a conversation ID that defines your place in the list.
"conv_01jj1hdhn79xas7a01wb3hysdb"
Was this page helpful?