Skip to main content
GET
/
v3
/
inbox
/
threads
/
{id}
Get inbox thread
curl --request GET \
  --url https://api.reply.io/v3/inbox/threads/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "channel": "Unknown",
  "contact": {
    "id": 123,
    "ownerId": 123,
    "fullName": "<string>",
    "email": "<string>",
    "linkedInProfileUrl": "<string>",
    "phone": "<string>",
    "companyName": "<string>",
    "title": "<string>",
    "isDeleted": true
  },
  "messages": [
    {
      "channel": "Email",
      "date": "2023-11-07T05:31:56Z",
      "body": "<string>",
      "fromName": "<string>",
      "isOutbound": true,
      "status": {
        "state": "Ok",
        "code": "LinkedInAccountNotEnabled",
        "occurredAt": "2023-11-07T05:31:56Z"
      },
      "subject": "<string>",
      "fromAddress": "<string>",
      "to": [
        "<string>"
      ],
      "cc": [
        "<string>"
      ],
      "bcc": [
        "<string>"
      ]
    }
  ],
  "emailAccountId": 123,
  "linkedInAccountId": 123,
  "sequence": {
    "id": 123,
    "name": "<string>"
  },
  "category": {
    "id": 123,
    "name": "<string>"
  },
  "hasMeetingIntent": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required
Required range: x >= 1

Response

Inbox thread

Full inbox thread with the contact, channel-specific account ids, sequence, category, meeting-intent flag, and the ordered list of messages.

id
integer
required
channel
enum<string>
required
Available options:
Unknown,
Email,
LinkedIn
contact
Inbox Thread Contact · object
required

Contact party on the other end of the inbox thread. All fields are nullable when unknown or for deleted contacts.

messages
(Inbox Email Message · object | Inbox LinkedIn Message · object)[]
required

Email message within an inbox thread.

emailAccountId
integer<int64> | null

Email account that owns this thread. null for non-email threads.

linkedInAccountId
integer | null

LinkedIn account that owns this thread. null for non-LinkedIn threads.

sequence
Inbox Thread Sequence · object

Minimal sequence reference attached to an inbox thread.

category
Inbox Thread Category Reference · object

Minimal category reference embedded in thread responses.

hasMeetingIntent
boolean

Whether the thread has been flagged as carrying meeting intent (manually or via AI detection).