Skip to main content
GET
/
messages
cURL
curl -X GET 'https://api.nuntly.com/messages' \
  -H 'Authorization: Bearer apk_xxx'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "inboxId": "<string>",
      "threadId": "<string>",
      "messageId": "<string>",
      "from": "<string>",
      "to": [
        "<string>"
      ],
      "cc": "carlo43@gmail.com",
      "bcc": "archive@company.com",
      "replyTo": "support@company.com",
      "subject": "<string>",
      "receivedAt": "<string>",
      "labels": [
        "<string>"
      ],
      "attachmentCount": 123
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

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
domainId
string

Filter by domain.

from
string

Filter by sender address.

Response

Successful response.

data
object[]
required
nextCursor
string | null