Skip to main content
GET
/
chats
/
threads
List threads
curl --request GET \
  --url https://api.ledgerbeam.com/v1/chats/threads \
  --header 'API-KEY: <api-key>'
[
  {
    "id": "thread_abc123",
    "name": "Top customers this month",
    "created_at": "2024-01-15T10:30:00Z",
    "updated_at": "2024-01-15T10:35:00Z"
  }
]

Overview

Retrieve a list of all conversation threads in your organization. Threads represent individual conversations about your data.

Authorizations

API-KEY
string
header
required

API key for authentication

Response

200 - application/json

Threads retrieved successfully

id
string

Thread ID

Example:

"thread_abc123"

name
string

Thread name

Example:

"Top customers this month"

created_at
string<date-time>

Creation timestamp

Example:

"2024-01-15T10:30:00Z"

updated_at
string<date-time>

Last update timestamp

Example:

"2024-01-15T10:35:00Z"