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

# List Identities

> Fetch all provisioned mailboxes, their delivery health, and verification states.

### Query Parameters

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

<ParamField query="provider" type="string">
  Filter by provider (aws\_ses, gmail\_smtp, etc.)
</ParamField>

<ParamField query="is_verified" type="boolean">
  Filter by verification status
</ParamField>

<ParamField query="is_active" type="boolean">
  Filter by active status
</ParamField>

<ParamField query="search" type="string">
  Search in name or email
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "sender_emails": [
        {
          "id": "b7e1-acde",
          "email": "updates@platform.io",
          "verified": true,
          "provider": "aws_ses"
        }
      ],
      "pagination": {
        "page": 1,
        "limit": 10,
        "total": 1,
        "pages": 1
      }
    }
  }
  ```
</ResponseExample>
