> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ledgerbeam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Threads

> Retrieve a list of all conversation threads

## Overview

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


## OpenAPI

````yaml GET /chats/threads
openapi: 3.1.0
info:
  title: Ledgerbeam API
  description: >-
    Conversational analytics API for querying data using natural language,
    managing resources, and interacting with data sources
  version: 1.0.0
  contact:
    name: Ledgerbeam Support
    email: support@ledgerbeam.com
  license:
    name: MIT
servers:
  - url: https://api.ledgerbeam.com/v1
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /chats/threads:
    get:
      summary: List threads
      description: Retrieve a list of all conversation threads
      operationId: listThreads
      responses:
        '200':
          description: Threads retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Thread'
components:
  schemas:
    Thread:
      type: object
      properties:
        id:
          type: string
          description: Thread ID
          example: thread_abc123
        name:
          type: string
          description: Thread name
          example: Top customers this month
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
          example: '2024-01-15T10:30:00Z'
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp
          example: '2024-01-15T10:35:00Z'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: API-KEY
      description: API key for authentication

````