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

# Get Thread

> Get thread details and usage statistics.



## OpenAPI

````yaml /api-reference/openapi.json get /threads/{thread_id}
openapi: 3.1.0
info:
  title: Puppeteer Core API
  description: >-
    Core API for the Puppeteer AI platform. Manages domain models,
    conversations, voice calls, simulations, and integrations.


    [Documentation](https://docs.puppeteerai.com)
  version: 1.0.0
servers:
  - url: https://api.puppeteerai.com
    description: Production
security: []
tags:
  - name: Auth
    description: JWT token generation and organization creation.
  - name: Messages
    description: >-
      Send and receive messages, retrieve conversation history, search, and
      create messages in threads.
  - name: Threads
    description: Create and manage threads, aliases, scheduled events, and bulk operations.
  - name: Voice
    description: Voice call handling, scheduling, batch calls, and WebSocket LLM.
paths:
  /threads/{thread_id}:
    get:
      tags:
        - Threads
      summary: Get Thread
      description: Get thread details and usage statistics.
      operationId: get_thread_threads__thread_id__get
      parameters:
        - name: thread_id
          in: path
          required: true
          schema:
            type: string
            title: Thread Id
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetThreadResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GetThreadResponse:
      properties:
        id:
          type: string
          title: Id
          description: The unique identifier for the thread.
        alias:
          anyOf:
            - type: string
            - type: 'null'
          title: Alias
          description: An optional alias for the thread.
        timezone:
          anyOf:
            - type: string
            - type: 'null'
          title: Timezone
          description: Timezone of the thread.
        usage:
          $ref: '#/components/schemas/ThreadUsage'
          description: Usage statistics for the thread.
      type: object
      required:
        - id
        - usage
      title: GetThreadResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ThreadUsage:
      properties:
        billable_messages:
          type: integer
          title: Billable Messages
          description: Number of billable messages in the thread.
        billable_message_cost:
          type: number
          title: Billable Message Cost
          description: Total cost of billable messages.
        voice_minutes:
          type: number
          title: Voice Minutes
          description: Total voice call duration in minutes.
        voice_cost:
          type: number
          title: Voice Cost
          description: Total cost of voice calls.
        total_cost:
          type: number
          title: Total Cost
          description: Combined cost of messages and voice calls.
      type: object
      required:
        - billable_messages
        - billable_message_cost
        - voice_minutes
        - voice_cost
        - total_cost
      title: ThreadUsage
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````