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

# Get Thread

> Fetch one Unibox thread with messages, participant context, and sender status.

**CLI:**

```bash theme={null}
puffle thread --id <id>
```

## Overview

Fetches one Unibox thread, all messages in that thread, participant enrichment, and sender status.

Opening a thread through this endpoint resets its `unread_count` to `0`.

## Path Parameters

| Parameter | Type   | Description |
| --------- | ------ | ----------- |
| `id`      | string | Thread ID.  |

## Example

```bash theme={null}
curl -H "Authorization: Bearer $PUFFLE_API_KEY" \
  "https://app.puffle.ai/api/threads/3d986dd1-9d70-45b7-8e36-5d5b8b1c9337"
```

```json theme={null}
{
  "thread": {
    "id": "3d986dd1-9d70-45b7-8e36-5d5b8b1c9337",
    "channel": "email",
    "status": "active",
    "inbox_state": "needs_reply",
    "participant_email": "founder@example.com",
    "unread_count": 0
  },
  "messages": [
    {
      "id": "6d54211c-7e24-4eb9-85fc-7388c8d89f2f",
      "conversation_id": "3d986dd1-9d70-45b7-8e36-5d5b8b1c9337",
      "direction": "inbound",
      "body_text": "Interested. Can you send details?"
    }
  ],
  "participantDetails": {
    "company": "Example Co",
    "position": "Founder",
    "headline": "Founder at Example Co"
  },
  "senderDisconnected": false,
  "senderAccount": {
    "display_name": "Sales Inbox",
    "status": "active"
  }
}
```

## Response Notes

Messages are ordered oldest first. Email attachment URLs are refreshed before the response is returned. `senderDisconnected` is `true` when the linked sender is missing or no longer in a sendable status.

## AI agent notes

Use this endpoint when you need the full thread and are ready to mark it read. If you only need paginated messages without changing unread state, use [Get messages](/api-reference/unibox/list-thread-messages).


## OpenAPI

````yaml get /api/threads/{id}
openapi: 3.0.3
info:
  title: Puffle API
  version: 1.0.0
  description: >-
    HTTP API for the Puffle GTM platform - Feed and Lead Finder search
    preparation, campaign-backed Outbound execution, Puffle Agent runs, sender
    management, and Unibox reply workflows. Designed for operation by both
    humans and autonomous AI agents. Agents should start at the [Agent
    Playbook](/guides/agent-playbook) which prescribes a workspace-context check
    (`GET /api/context`) and core user journeys with exact call ordering.
  contact:
    name: Puffle Support
    url: https://puffle.ai
servers:
  - url: https://app.puffle.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Campaigns
    description: >-
      Campaign-backed Outbound execution. These endpoints manage draft,
      launching, active, paused, and completed Outbound runs with sequence
      nodes, contacts, and sender accounts.
  - name: Accounts
    description: Signed-in user account, settings, and workspace context endpoints.
  - name: Billing
    description: Billing customer portal and account billing endpoints.
  - name: Senders
    description: >-
      Connected sender accounts, email inboxes, sending domains, DNS
      verification, warmup, and sender capacity.
  - name: Socials
    description: >-
      Read connected LinkedIn and X accounts, review current and archived posts,
      and reconcile publication status. Creating, editing, scheduling,
      publishing, OAuth connection, analytics, and mentions remain
      dashboard-managed workflows and are not part of the public Bearer-token
      API.
paths:
  /api/threads/{id}:
    get:
      tags:
        - Unibox
      summary: Get Thread
      description: Get Thread
      operationId: getThread
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            description: Thread (`conversations.id`) UUID.
      responses:
        '200':
          description: Successful response.
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
        '404':
          description: Not found.
        '500':
          description: Internal server error.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: pk_live_...

````