---
title: "Notification routes implementation"
method: GET
path: "/api/v1/notifications"
tags: ["Notifications"]
---

# Notification routes implementation

`GET /api/v1/notifications`

Note: OpenAPI documentation for these endpoints can be found in the `openapi.rs` file

Lists all notifications with pagination support.

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

Notification list retrieved successfully

- ApiResponseVecNotificationResponse
  - `data` object[]
    - `has_signing_key` boolean, required — Signing key is hidden in responses for security
    - `id` string, required
    - `type` 'webhook', required — Notification type enum used by both config file and API
    - `url` string, required
  - `error` string
  - `metadata` PluginMetadata
    - `logs` LogEntry[], nullable
      - `level` 'log' | 'info' | 'error' | 'warn' | 'debug' | 'result', required
      - `message` string, required
    - `traces` unknown[], nullable
      - unknown
  - `pagination` PaginationMeta
    - `current_page` integer, required
    - `per_page` integer, required
    - `total_items` integer, required
  - `success` boolean, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `500` — Internal Server Error

---

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