Skip to main content
List Webhook Endpoints V2
Use this endpoint to retrieve a paginated list of the webhook endpoints registered to your application. Filter by status to narrow the list to enabled, disabled, or errored endpoints, and by subscribedEvents to find endpoints carrying a given subscription. Signing secrets are never included.
The subscribedEvents filter matches literally against each endpoint’s subscription list rather than expanding wildcards. Filtering by transfer.* returns endpoints that subscribed with the transfer.* wildcard itself, not endpoints subscribed to transfer.succeeded. To find every endpoint that would receive one event, pass both forms: subscribedEvents=transfer.succeeded,transfer.*,*.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

object
required

Response

A paginated list of webhook endpoints.

data
object[]
required

Array of webhook endpoint presentations

hasNext
boolean
required

Whether there is a next page

Example:

false

hasPrevious
boolean
required

Whether there is a previous page

Example:

false

limit
number
required

Number of items per page

Required range: 1 < x < 100
Example:

10

page
number
required

Current page number

Example:

1

total
number
required

Total number of items

Example:

1

totalPages
number
required

Total number of pages

Example:

1

Last modified on August 27, 2026