> ## Documentation Index
> Fetch the complete documentation index at: https://docs.syntr.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Message Detail

> Retrieve full headers and body of a specific inbound message.

<ParamField path="messageId" type="string" required>
  The ID of the message.
</ParamField>

### Query Parameters

<ParamField query="senderId" type="string" required>
  REQUIRED. The ID of the sender identity.
</ParamField>

<ParamField query="mailboxId" type="string">
  Optional mailbox ID for WildDuck identities.
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "id": "msg_123",
      "subject": "Re: Your Pitch",
      "body": "I would love to learn more...",
      "from": {
        "name": "John Doe",
        "email": "john@doe.com"
      }
    }
  }
  ```
</ResponseExample>
