---
title: "List outgoing webhook events"
method: GET
path: "/transactions/webhooks"
tags: ["Webhooks"]
---

# List outgoing webhook events

`GET /transactions/webhooks`

Returns paginated records of outgoing webhooks sent to your webhook URL. Webhooks are persisted for a fixed retention period of 7days.

## Query parameters

- `page` integer
- `size` integer
- `sort` string
- `filter` string
- `exports` boolean
- `search` string
- `startDate` string, date-time
- `endDate` string, date-time
- `reference` string
- `status` 'delivered' | 'failed' — Stored delivery outcome for the webhook event document.
- `eventName` 'trade.pending' | 'trade.completed' | 'trade.flagged' | 'withdrawal.pending' | 'withdrawal.processing' | 'withdrawal.rejected' | 'withdrawal.completed' | 'withdrawal.reversed' — Webhook event name (matches `event` / `eventType` for trade and withdrawal notifications).

## Response `200`

Paginated list of webhook event documents

- object
  - `success` boolean
  - `data` WebhookEvent[]
    - `id` string
    - `integration` string — Integration document ID
    - `reference` string — Trade or withdrawal ObjectId string
    - `eventType` 'trade.pending' | 'trade.completed' | 'trade.flagged' | 'withdrawal.pending' | 'withdrawal.processing' | 'withdrawal.rejected' | 'withdrawal.completed' | 'withdrawal.reversed' — Webhook event name (matches `event` / `eventType` for trade and withdrawal notifications).
    - `payload` unknown
    - `url` string, uri
    - `status` 'delivered' | 'failed' — Stored delivery outcome for the webhook event document.
    - `attemptsCount` integer
    - `attempts` WebhookDeliveryAttempt[]
      - `attemptedAt` string, date-time
      - `responseStatus` integer
      - `responseBody` unknown
      - `errorMessage` string
      - `errorStatusCode` integer
    - `deliveredAt` string, date-time, nullable
    - `lastAttemptAt` string, date-time, nullable
    - `expireAt` string, date-time
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
  - `meta` PaginationMeta — Pagination metadata returned by list endpoints.
    - `pages` integer
    - `prevPage` integer, nullable
    - `nextPage` integer, nullable
    - `page` integer
    - `totalDocs` integer
    - `hasPrevPage` boolean
    - `hasNextPage` boolean

## Other responses

- `401` — Invalid or missing API credentials
- `403` — The integration is inactive or the action is not permitted
- `422` — Request validation failed — check the errors array for field-level details
- `500` — An unexpected server error occurred

---

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