---
title: "List stats for a subscriber"
method: GET
path: "/v4/subscribers/{subscriber_id}/stats"
tags: ["Subscribers"]
---

# List stats for a subscriber

`GET /v4/subscribers/{subscriber_id}/stats`

Retrieve email stats for a specific subscriber: totals for sent, opened, clicked, and bounced emails, open and click rates, and recency signals (`last_sent`, `last_opened`, `last_clicked`, and sends since the last open/click). Filter the stats with the `email_sent_after` and/or `email_sent_before` query parameters to limit them to emails sent within a specific date range.

**Data retention:** Starting October 15, 2026, email stats (opens, clicks, sends, bounces, and unsubscribes) are available via the API for the last 5 years — `email_sent_after`/`email_sent_before` are clamped to that window, and dates outside it return a `400` error indicating the earliest available date. Older data is archived and can no longer be retrieved via the API; creators can [contact Kit support](https://help.kit.com) to request an export of their archived data. See [Email data retention](/api-reference/email-data-retention) for the full policy.

## Path parameters

- `subscriber_id` integer, required

## Query parameters

- `email_sent_after` string
- `email_sent_before` string

## Response `200`

Returns the stats for a subscriber

- object
  - `subscriber` object, required
    - `id` integer, required
    - `stats` object, required
      - `sent` integer, required
      - `opened` integer, required
      - `clicked` integer, required
      - `bounced` integer, required
      - `open_rate` number, float, required
      - `click_rate` number, float, required
      - `last_sent` string, required
      - `last_opened` string, required
      - `last_clicked` string, required
      - `sends_since_last_open` integer, required
      - `sends_since_last_click` integer, required

## Other responses

- `401` — Returns a 401 if the token and/or account cannot be authenticated

---

[API](https://skmtc.net/kit/apis/kit-api.md) · [All operations](https://skmtc.net/kit/apis/kit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kit/kit-api/revisions/0df0c90d12da/schema)
