---
title: "List notification runs"
method: GET
path: "/notification_runs"
tags: ["Notifications Runs"]
---

# List notification runs

`GET /notification_runs`

Return paginated notification runs for the current user ordered by most recent first.

**Pagination**
- `page` starts at 1.
- `page_size` is 1 to 1000 (default 20).

**Response**
`PaginatedResponse[NotificationRunBase]` with `items`, `total`, `page`, `page_size`.

## Query parameters

- `page` integer — Page number (starts at 1).
- `page_size` integer — Items per page (1–1000, default 20).

## Response `200`

Notification runs listed successfully.

- PaginatedResponseNotificationRunBase
  - `items` NotificationRunBase[], required — List of items for the current page.
    - `id` integer, required
    - `user_id` integer, required
    - `notification_id` integer, nullable
    - `sent_at` string, date-time, required
    - `new_leaks_count` integer, required
    - `unlocked_count` integer, required
    - `points_spent` integer, required
    - `sent_ok` boolean, required
    - `notification_type` string, nullable
    - `notification_value` string, nullable
    - `status` string
  - `total` integer, required — Total number of matching items.
  - `page` integer, required — Current page number.
  - `page_size` integer, required — Number of items per page.
  - `blacklisted_value` string, nullable — If a filter value matched a blacklist entry, this field contains the matched value.

## Other responses

- `401` — Authentication required.
- `422` — Validation Error

---

[API](https://skmtc.dev/leakradar/apis/leakradar-io-api.md) · [All operations](https://skmtc.dev/leakradar/apis/leakradar-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/leakradar/leakradar-io-api/revisions/82a99c608e1a/schema)
