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

> List all configured sending identities / accounts.

Returns all sender identities (SMTP and Google Workspace accounts) configured in your workspace, newest first. Sensitive credentials such as passwords and OAuth refresh tokens are never returned.

> **Dashboard-only creation:** Sender identities cannot be created via the API. Connect your sending identities in the [Mailofly Dashboard](https://app.mailofly.com/user/accounts).
>
> **Legacy compatibility:** `/v1/accounts` is a deprecated alias supported for backward compatibility. Please use `/v1/identities`.

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token in the format `Bearer <api_key>`.
</ParamField>

### Response

<ResponseField name="data" type="object[]">
  Array of identity objects.

  <Expandable title="Identity properties">
    <ResponseField name="id" type="string">Unique identifier for the identity.</ResponseField>
    <ResponseField name="name" type="string">Display name for the identity.</ResponseField>
    <ResponseField name="provider_type" type="string">Provider type: `smtp` or `google`.</ResponseField>
    <ResponseField name="smtp_host" type="string | null">SMTP server hostname (if SMTP).</ResponseField>
    <ResponseField name="smtp_port" type="number | null">SMTP port number (if SMTP).</ResponseField>
    <ResponseField name="smtp_username" type="string | null">SMTP username (if SMTP).</ResponseField>
    <ResponseField name="google_email" type="string | null">Connected Google account email (if Google).</ResponseField>
    <ResponseField name="custom_from_email" type="string | null">Custom sender email address.</ResponseField>
    <ResponseField name="daily_mail_limit" type="number">Maximum emails allowed per 24 hours.</ResponseField>
    <ResponseField name="daily_mail_used" type="number">Emails sent today.</ResponseField>
    <ResponseField name="created_at" type="string">ISO timestamp of creation.</ResponseField>
  </Expandable>
</ResponseField>


## Related topics

- [MCP Tools Reference](/mcp-server/tools.md)
- [MCP Server Guides](/guides/ai/mcp-ai-guides.md)
- [How Identities Send](/identities/how-it-sends.md)
- [Managing Identities](/identities/managing-identities.md)
- [Delete Identity](/api/identities/delete-identity.md)
