> ## 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 Inbox

> Fetch messages for a specific sending identity.

### Query Parameters

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

<ParamField query="pageToken" type="string">
  Token for the next page of results.
</ParamField>

<ParamField query="label" type="string">
  Filter by label (e.g. INBOX, SENT). Default: inbox
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "messages": [
        {
          "id": "msg_123",
          "snippet": "Interested!",
          "from": "lead@enterprise.com",
          "date": "2024-03-18T10:00:00Z"
        }
      ],
      "nextPageToken": "token_abc123"
    }
  }
  ```
</ResponseExample>
