Skip to main content
GET
/
inbound
/
messages
/
{id}
curl --request GET \
  --url https://api.autosend.com/v1/inbound/messages/60d5ec49f1b2c72d9c8b1234 \
  --header 'Authorization: Bearer as_your-api-key'
{
  "success": true,
  "data": {
    "id": "60d5ec49f1b2c72d9c8b1234",
    "providerMessageId": "abc123def456",
    "messageId": "<[email protected]>",
    "domainName": "support.example.com",
    "from": {
      "email": "[email protected]",
      "name": "Jane Customer"
    },
    "to": [
      {
        "email": "[email protected]",
        "name": null
      }
    ],
    "cc": [],
    "bcc": [],
    "replyTo": [],
    "subject": "Question about my order",
    "text": "Hi, I wanted to check on the status of order #4821.",
    "html": "<p>Hi, I wanted to check on the status of order #4821.</p>",
    "attachments": [
      {
        "attachmentId": "att_60d5ec49f1b2c72d9c8b9999",
        "filename": "receipt.pdf",
        "contentType": "application/pdf",
        "size": 20480,
        "index": 0
      }
    ],
    "headers": {
      "from": "Jane Customer <[email protected]>",
      "to": "[email protected]",
      "subject": "Question about my order"
    },
    "spamVerdict": "PASS",
    "virusVerdict": "PASS",
    "spfVerdict": "PASS",
    "dkimVerdict": "PASS",
    "dmarcVerdict": "PASS",
    "status": "PROCESSED",
    "threadId": "60d5ec49f1b2c72d9c8b1234",
    "inReplyTo": null,
    "inReplyToEmailActivityId": null,
    "inReplyToInboundEmailId": null,
    "receivedAt": "2026-06-20T10:15:30.000Z"
  }
}
This endpoint uses a standard project API key (AS_ prefix). The message must belong to the project the key is scoped to.
curl --request GET \
  --url https://api.autosend.com/v1/inbound/messages/60d5ec49f1b2c72d9c8b1234 \
  --header 'Authorization: Bearer as_your-api-key'
{
  "success": true,
  "data": {
    "id": "60d5ec49f1b2c72d9c8b1234",
    "providerMessageId": "abc123def456",
    "messageId": "<[email protected]>",
    "domainName": "support.example.com",
    "from": {
      "email": "[email protected]",
      "name": "Jane Customer"
    },
    "to": [
      {
        "email": "[email protected]",
        "name": null
      }
    ],
    "cc": [],
    "bcc": [],
    "replyTo": [],
    "subject": "Question about my order",
    "text": "Hi, I wanted to check on the status of order #4821.",
    "html": "<p>Hi, I wanted to check on the status of order #4821.</p>",
    "attachments": [
      {
        "attachmentId": "att_60d5ec49f1b2c72d9c8b9999",
        "filename": "receipt.pdf",
        "contentType": "application/pdf",
        "size": 20480,
        "index": 0
      }
    ],
    "headers": {
      "from": "Jane Customer <[email protected]>",
      "to": "[email protected]",
      "subject": "Question about my order"
    },
    "spamVerdict": "PASS",
    "virusVerdict": "PASS",
    "spfVerdict": "PASS",
    "dkimVerdict": "PASS",
    "dmarcVerdict": "PASS",
    "status": "PROCESSED",
    "threadId": "60d5ec49f1b2c72d9c8b1234",
    "inReplyTo": null,
    "inReplyToEmailActivityId": null,
    "inReplyToInboundEmailId": null,
    "receivedAt": "2026-06-20T10:15:30.000Z"
  }
}

Authorizations

Authorizations
string | header
required
Project API key header of the form Bearer as_<key>. You can also pass the key via the x-api-key header.

Path Parameters

id
string
required
The unique identifier of the inbound message. The message must belong to the authenticated project.Example: "60d5ec49f1b2c72d9c8b1234"

Response

Message retrieved successfully
success
boolean
Indicates if the request was successfulExample: true
data
object
The full inbound message object

Error Responses

400 - Invalid message ID
object
Returned when the id parameter is not valid.
{
  "success": false,
  "error": {
      "message": "Invalid value",
    }
  
}
404 - Message not found
object
Returned when the message does not exist or does not belong to the authenticated project.
{
  "success": false,
  "error": {
    "message": "Inbound email not found"
  }
}