> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reader.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# List webhooks

Returns all webhook subscriptions in the workspace, paginated. Secrets are stripped from list responses; they're only visible on the create response.


## OpenAPI

````yaml openapi.json GET /v1/webhooks
openapi: 3.1.0
info:
  title: Reader API
  version: 1.0.0
  description: >-
    Reader turns any URL into clean markdown for LLMs. One endpoint (`POST
    /v1/read`) handles scrape, batch, and crawl operations. See
    https://reader.dev/docs for concepts and guides.
servers:
  - url: https://api.reader.dev
    description: Production
security: []
tags:
  - name: Read
    description: Scrape, batch, and crawl operations
  - name: Jobs
    description: Async job management
  - name: Webhooks
    description: Event subscriptions
  - name: Account
    description: API keys, credits, and usage
paths:
  /v1/webhooks:
    get:
      tags:
        - Webhooks
      summary: List webhooks
      parameters:
        - schema:
            type: integer
            minimum: 0
          required: false
          name: skip
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 100
          required: false
          name: limit
          in: query
      responses:
        '200':
          description: Paginated list
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Webhook'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
                required:
                  - success
                  - data
                  - pagination
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Webhook:
      type: object
      properties:
        id:
          type: string
        url:
          type: string
          format: uri
        name:
          type: string
        events:
          type: array
          items:
            type: string
        secret:
          type: string
          description: HMAC secret. Visible only on the create response.
        headers:
          type: object
          additionalProperties:
            type: string
        active:
          type: boolean
        deliveryStats:
          type: object
          properties:
            totalAttempts:
              type: integer
            failedDeliveries:
              type: integer
            lastDeliveryAt:
              type:
                - string
                - 'null'
              format: date-time
            lastDeliveryStatus:
              type:
                - integer
                - 'null'
          required:
            - totalAttempts
            - failedDeliveries
            - lastDeliveryAt
            - lastDeliveryStatus
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - url
        - name
        - events
        - headers
        - active
        - deliveryStats
        - createdAt
        - updatedAt
    Pagination:
      type: object
      properties:
        total:
          type: integer
          example: 1234
        skip:
          type: integer
          example: 0
        limit:
          type: integer
          example: 20
        hasMore:
          type: boolean
          example: true
        next:
          type: string
          format: uri
          example: https://api.reader.dev/v1/jobs/abc?skip=20&limit=20
      required:
        - total
        - skip
        - limit
        - hasMore
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````