> ## 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 Audit Logs

> Access a detailed audit trail of all developer-triggered messages and their current delivery status.

### Query Parameters

<ParamField query="page" type="integer">
  Page number
</ParamField>

<ParamField query="status" type="string">
  Filter: sent, failed, bounced, complaint, opened, clicked
</ParamField>

<ParamField query="search" type="string">
  Search by email, name, or subject
</ParamField>

<ParamField query="track_id" type="string">
  Search by unique tracking ID
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "msg_1",
        "email": "user@test.com",
        "status": "delivered",
        "sent_at": "2024-03-18T10:00:00Z",
        "opened_at": null
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 20,
      "total": 100,
      "pages": 5
    }
  }
  ```
</ResponseExample>
