---
title: "Get list of webhooks"
method: GET
path: "/v2/webhooks"
tags: ["Webhooks/Webhooks"]
---

# Get list of webhooks

`GET /v2/webhooks`

Gets the list of webhooks that the user created.

The endpoint supports pagination using the `limit` and `offset` parameters
and it will not return more than 1000 records.
By default, the records are sorted by the `createdAt` field in ascending
order. To sort the records in descending order, use the `desc=1`
parameter.

## Query parameters

- `offset` number, double
- `limit` number, double
- `desc` boolean

## Response `200`

- ListOfWebhooksResponse
  - `data` ListOfWebhooks, required — Common pagination fields for list responses.
    - `total` integer, required — The total number of items available across all pages.
    - `offset` integer, required — The starting position for this page of results.
    - `limit` integer, required — The maximum number of items returned per page.
    - `desc` boolean, required — Whether the results are sorted in descending order.
    - `count` integer, required — The number of items returned in this response.
    - `items` WebhookShort[], required
      - `id` string, required
      - `createdAt` string, date-time, required
      - `modifiedAt` string, date-time, required
      - `userId` string, required
      - `isAdHoc` boolean, nullable
      - `isApifyIntegration` boolean
      - `isEnabled` boolean
      - `actionType` string
      - `shouldInterpolateStrings` boolean, nullable
      - `eventTypes` WebhookEventType[], required
      - `condition` WebhookCondition, required
        - `actorId` string, nullable
        - `actorTaskId` string, nullable
        - `actorRunId` string, nullable
      - `ignoreSslErrors` boolean, required
      - `doNotRetry` boolean, required
      - `requestUrl` string, uri, required
      - `lastDispatch` ExampleWebhookDispatch
        - `status` 'ACTIVE' | 'SUCCEEDED' | 'FAILED', required — Status of the webhook dispatch indicating whether the HTTP request was successful.
        - `finishedAt` string, date-time, nullable
        - `removedAt` string, date-time, nullable
      - `stats` WebhookStats
        - `totalDispatches` integer

## Other responses

- `400` — Bad request - invalid input parameters or request body.
- `401` — Unauthorized - authentication required or invalid token.
- `403` — Forbidden - insufficient permissions to perform this action.
- `405` — Method not allowed.
- `429` — Too many requests - rate limit exceeded.

---

[API](https://skmtc.net/apify/apis/apify-api.md) · [All operations](https://skmtc.net/apify/apis/apify-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/apify/apify-api/versions/01a71794279b/schema)
