Skip to main content
Returns prospect threads assigned to the SDR linked to the API key. Threads are MQL-qualified conversations forwarded from campaign replies.
curl "https://app.leadterra.co/v1/sdr/inbox?status=new&limit=20" \
  -H "Authorization: Bearer sk_live_your_key"

Query Parameters

status
string
Filter by thread status. One of new, awaiting_reply, needs_followup, replied, meeting_booked, won, lost_not_interested, lost_timing, lost_competitor, archived. Can be repeated for multiple values.
category
string
Filter by MQL category (A, B, or C).
Search across contact email, name, and subject.
snoozed
string
Filter by snooze state. true for snoozed threads, false for active.
limit
number
Maximum threads to return (default 50, max 100).
offset
number
Number of threads to skip for pagination.
orderBy
string
Sort order: priority (default), lastMessage, or created.

Response

{
  "data": {
    "threads": [
      {
        "id": "thread_id",
        "contactEmail": "ava@example.com",
        "contactName": "Ava Patel",
        "subject": "Re: Quick question",
        "status": "new",
        "category": "A",
        "priorityScore": 85,
        "lastMessageAt": "2026-06-28T18:30:00.000Z"
      }
    ],
    "total": 1,
    "hasMore": false
  }
}