# List email allowed domains

Retrieves a paginated list of all domains in the email allowlist.

RBAC:
- requires ALL of AdminSettings.Manage
- requires ANY of AdminSettings.Read, AdminSettings.Manage

Endpoint: GET /api/v1/admin/email-allow
Version: 1.0
Security: header

## Response 200 fields (application/json):

  - `domain` (string, required)
    The domain name that is allowed to federate with this instance
    Example: "mastodon.social"

  - `createdAt` (string, required)
    Timestamp when the domain was added to the allowlist
    Example: "2022-03-10T16:15:50Z"

## Response 403 fields (application/json):

  - `errorCode` (string, required)
    Error code

  - `message` (string, required)
    Error message

  - `docUrl` (string)
    Link to documentation


