Skip to main content
GET
/
inboxes
/
{inboxId}
/
threads
cURL
curl -X GET 'https://api.nuntly.com/inboxes/ibx_01kabn43yqyxn2bx4ve84mczd3/threads' \
  -H 'Authorization: Bearer apk_xxx'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "domainId": "<string>",
      "domainName": "<string>",
      "inboxId": "<string>",
      "subject": "<string>",
      "lastMessageAt": "<string>",
      "messageCount": 123,
      "labels": [
        "<string>"
      ],
      "agentId": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Use an API key from https://nuntly.com/dashboard/api-keys. Required on every endpoint.

Path Parameters

inboxId
string
required

Query Parameters

cursor
string

Pagination cursor from a previous response

limit
integer
default:30

Maximum number of items to return

Required range: 1 <= x <= 30
labels
string

Comma-separated labels to filter by (AND logic). Threads with spam/trash are excluded by default unless explicitly requested via ?labels=spam or ?labels=trash.

Response

Successful response.

data
object[]
required
nextCursor
string | null