SendStreak logo
menu

Get a message sent to a contact

Returns a single message sent to a contact, with subject, delivery status, and template reference. Attachment bodies are stripped to filenames; fetch them via the attachments endpoint.

Endpoint

GET https://api.sendstreak.com/v2/accounts/{accountId}/contacts/{contactId}/messages/{messageId}

All v2 endpoints require a bearer token - see Authentication.

Path parameters

Parameter Type Description
accountId string The account the request is scoped to.
contactId string  
messageId string  

Response

The message (attachment bodies omitted).

{
  "_id": "665f0a2b1c9d440012ab34cd",
  "rcpt": "[email protected]",
  "subject": "Welcome to Acme!",
  "status": "queued",
  "templateSlug": "sign-up-thank-you",
  "parentType": "automation",
  "createDate": "2026-07-07T09:30:00.000Z",
  "attachments": [
    {
      "filename": "hello.txt"
    }
  ]
}

Errors

Status Description
401 Missing or invalid token, or the token is not authorized for this account/user.
404 The requested resource does not exist.

See Errors and rate limits for what error responses look like.

Curl example

curl --location --request GET 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/contacts/YOUR_CONTACT_ID/messages/YOUR_MESSAGE_ID' \
--header 'Authorization: Bearer YOUR_API_TOKEN'
Try SendStreak for Free now!