---
title: "List Notifications"
method: GET
path: "/api/v1/notifications/"
tags: ["notification", "web_app", "NOT_USED"]
---

# List Notifications

`GET /api/v1/notifications/`

分页查询用户的消息列表；返回用户收到的通知。

## Query parameters

- `page` integer
- `page_size` integer
- `is_read` boolean, nullable — 是否已读，不传则查询全部

## Response `200`

Successful Response

- APIResponseNotificationList
  - `code` integer
  - `message` string
  - `data` NotificationList — Specific model for a paginated list of notification items.
    - `items` NotificationItem[]
      - `id` string, required
      - `type` integer, required
      - `template_id` integer, nullable, required
      - `title` string, nullable, required
      - `content` string, nullable, required
      - `image_urls` string[], nullable, required
      - `link_urls` string[], nullable, required
      - `is_read` boolean, required
      - `read_at` string, date-time, nullable, required
      - `created_at` string, date-time, required
    - `total` integer
    - `page` integer
    - `page_size` integer
    - `total_pages` integer

## Other responses

- `422` — Validation Error

## Changes

- **2025-11-30** `64a35ff6429d` — 1 info
  - api tag `NOT_USED` added
- **2025-11-25** `05cf5f034c74` — 1 info
  - api tag `web_app` added

[Change history](https://skmtc.dev/nascentcore/apis/inty-backend/changes/api/v1/notifications/get.md)

---

[API](https://skmtc.dev/nascentcore/apis/inty-backend.md) · [All operations](https://skmtc.dev/nascentcore/apis/inty-backend/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/nascentcore/inty-backend/revisions/1e014c365df2/schema)
