List Sessions
client.beta.chat.list(ChatListParams { organization_id, page_size, page_token, project_id } query?, RequestOptionsoptions?): PaginatedCursor<ChatListResponse { last_updated_at, session_id, generated_title, 2 more } >
GET/api/v1/chat
List Sessions
import LlamaCloud from '@llamaindex/llama-cloud';
const client = new LlamaCloud({
apiKey: process.env['LLAMA_CLOUD_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const chatListResponse of client.beta.chat.list()) {
console.log(chatListResponse.session_id);
}{
"items": [
{
"last_updated_at": "2026-04-22T12:34:41.342245",
"session_id": "ses-abc123",
"generated_title": "What were the main findings in Q3?...",
"index_ids": [
"idx-abc123",
"idx-def456"
],
"job_metadata": {
"duration_ms": 0,
"error": "error",
"export_config_ids": [
"string"
],
"is_error": true,
"total_input_tokens": 0,
"total_output_tokens": 0,
"turns": 0
}
}
],
"next_page_token": "next_page_token"
}Returns Examples
{
"items": [
{
"last_updated_at": "2026-04-22T12:34:41.342245",
"session_id": "ses-abc123",
"generated_title": "What were the main findings in Q3?...",
"index_ids": [
"idx-abc123",
"idx-def456"
],
"job_metadata": {
"duration_ms": 0,
"error": "error",
"export_config_ids": [
"string"
],
"is_error": true,
"total_input_tokens": 0,
"total_output_tokens": 0,
"turns": 0
}
}
],
"next_page_token": "next_page_token"
}