---
title: "List Webhooks"
method: GET
path: "/api/admin/webhooks"
tags: ["admin-webhooks"]
---

# List Webhooks

`GET /api/admin/webhooks`

## Query parameters

- `provider` string, nullable
- `status` string
- `workspace_id` string, nullable
- `event_type` string, nullable
- `search` string, nullable
- `cursor` string, nullable
- `limit` integer
- `sort` 'created_at' | 'last_attempt_at' | 'attempts' | 'status'
- `sort_dir` 'asc' | 'desc'

## Response `200`

Successful Response

- WebhookListResponse
  - `items` WebhookListItem[], required
    - `id` string, required
    - `workspace_id` string, required
    - `workspace_name` string, required
    - `provider` string, required
    - `event_type` string, required
    - `status` string, required
    - `attempts` integer, required
    - `last_attempt_at` string, date-time, nullable, required
    - `next_retry_at` string, date-time, nullable, required
    - `failure_reason` string, nullable, required
    - `created_at` string, date-time, required
  - `pagination` CursorPage, required
    - `next_cursor` string, nullable
    - `has_more` boolean
    - `total` integer, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/outcallerai/apis/fastapi.md) · [All operations](https://skmtc.net/outcallerai/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/outcallerai/fastapi/revisions/a57f684e7966/schema)
