---
title: "Filter email account stats"
method: POST
path: "/v3/email-accounts/stats"
tags: ["Email Accounts"]
---

# Filter email account stats

`POST /v3/email-accounts/stats`

<Warning>
  **Coming soon.** This endpoint will be available by late July 2026.
</Warning>

<small>_Requires the `channels:read` scope (or a broader one that includes it)._</small>

Returns a paginated list of email account sending statistics matching the provided filter criteria.

## Query parameters

- `top` integer
- `skip` integer

## Request body

- object — Filter criteria for searching email accounts. All provided filters are combined with AND logic — an account must match every specified filter to be included. Omitted (null) filters are ignored.
  - `status` 'connected' | 'disconnected' | 'unknown', nullable — Filter by connection status (case-insensitive, exact match). Allowed values: connected, disconnected, unknown
  - `emailAccountType` string, nullable — Filter by email account provider type (case-insensitive, exact match). Allowed values: Custom, Gmail, Outlook, Exchange, ExchangeOnPremise
  - `email` string, nullable — Filter by email address (exact match, case-insensitive)
  - `domains` string[], nullable — Filter by email domains (suffix match on the email address). Multiple domains are combined with OR logic — matches any of the provided domains.
  - `ownerUserIds` integer[], nullable — Filter by owner user IDs (matches any of the provided IDs)
  - `tags` string[], nullable — Filter by tag names (case-insensitive, matches any of the provided tags)

## Response `200`

Paginated list of email account stats

- object
  - `items` object[]
    - `id` integer, required — Email account ID
    - `emailsSentToday` integer, required — Number of emails sent today from this account
    - `totalEmailsSent` integer, required — Total number of emails sent from this account
    - `dailySendingLimit` integer, required — Maximum number of emails that can be sent per day
  - `hasMore` boolean — Whether more items are available beyond the current page

## Other responses

- `400` — Invalid pagination parameters
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User lacks required feature scope to view email account stats
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/versions/1c3d32eaf95e/schema)
