# List webhook endpoints `GET /webhooks` **Required scope:** `webhooks:manage` ## Responses | Status | Meaning | |---|---| | `200` | Webhook endpoint list (signing secrets omitted) | ## Example ```bash curl -X GET "https://backend.immut.io/api/v1/webhooks" \ -H "Authorization: Bearer $IMMUT_API_KEY" ``` ## OpenAPI fragment ```json { "/webhooks": { "get": { "operationId": "listWebhooks", "summary": "List webhook endpoints", "description": "Requires scope webhooks:manage.", "responses": { "200": { "description": "Webhook endpoint list (signing secrets omitted)" } }, "tags": [ "Webhooks" ], "x-required-scope": "webhooks:manage" } } } ```