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

# List Logs

> Retrieve a paginated list of API request and delivery logs.

Query request logs generated by API requests, webhook deliveries, and outbound transmissions.

### Query Parameters

<ParamField query="page" type="number" default="1">
  Page number.
</ParamField>

<ParamField query="page_size" type="number" default="50">
  Number of log entries per page (max 100).
</ParamField>

### Response

<ResponseField name="data" type="array">
  <ResponseField name="id" type="string">Log ID.</ResponseField>
  <ResponseField name="method" type="string">HTTP method.</ResponseField>
  <ResponseField name="path" type="string">Request URL path.</ResponseField>
  <ResponseField name="statusCode" type="number">HTTP response status.</ResponseField>
  <ResponseField name="ipAddress" type="string">Origin IP.</ResponseField>
  <ResponseField name="createdAt" type="string">Timestamp.</ResponseField>
</ResponseField>

<ResponseField name="pagination" type="object">
  <ResponseField name="total" type="number">Total log count.</ResponseField>
  <ResponseField name="page" type="number">Current page.</ResponseField>
  <ResponseField name="page_size" type="number">Page limit.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.mailofly.com/api/v1/logs?page=1&page_size=25" \
    -H "Authorization: Bearer mf_live_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": [
      {
        "id": "log_98765",
        "method": "POST",
        "path": "/v1/emails",
        "statusCode": 200,
        "ipAddress": "198.51.100.42",
        "createdAt": "2026-09-11T14:02:15Z"
      }
    ],
    "pagination": {
      "total": 3540,
      "page": 1,
      "page_size": 25
    }
  }
  ```
</ResponseExample>


## Related topics

- [List Sent Emails](/api/emails/list-emails.md)
- [Managing the Suppression List](/guides/deliverability/managing-the-suppression-list.md)
- [Retrieve Log](/api/logs/retrieve-log.md)
- [How Identities Send](/identities/how-it-sends.md)
- [AI onboarding](/getting-started/ai-onboarding.md)
