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

# List Webhooks

> List the webhooks configured for your organization, with their URLs, subscribed state and when each last fired.

Returns every webhook on the organization, including `is_enabled` and `last_triggered_at` — the pair to watch if deliveries have quietly stopped arriving.

Pass `is_active=true` to return only enabled webhooks. `for_test_connector` distinguishes a Development webhook from a Production one.

<Note>
  This endpoint defaults to `page_size=20` with a maximum of `100`, rather than the `50` and `200` used elsewhere — see [Pagination](/api-reference/basics/pagination).
</Note>


## OpenAPI

````yaml get /api/v1/webhooks
openapi: 3.1.0
info:
  title: Bindbee APIs
  version: 0.1.0
servers:
  - url: https://api.bindbee.dev
  - url: https://api-eu.bindbee.dev
security: []
paths:
  /api/v1/webhooks:
    get:
      tags:
        - Webhooks
      summary: List Webhooks
      description: List webhooks configured for the caller's organization.
      operationId: list_webhooks_api_v1_webhooks_get
      parameters:
        - name: is_active
          in: query
          required: false
          schema:
            anyOf:
              - type: boolean
              - type: 'null'
            description: Filter webhooks by active status.
            examples:
              - true
            title: Is Active
          description: Filter webhooks by active status.
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Number of results to return per page.
            default: 20
            title: Page Size
          description: Number of results to return per page.
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: The pagination cursor value.
            title: Cursor
          description: The pagination cursor value.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PaginatedResponse_WebhookListItemExternal_
        '401':
          description: Missing or invalid bearer authentication credentials.
          headers:
            WWW-Authenticate:
              description: Bearer authentication challenge.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: >-
            The credentials are valid but do not permit access to this resource,
            e.g. a connector token used on a different API category or a model
            whose writes are disabled.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: Rate limit exceeded.
          headers:
            X-RateLimit-Limit:
              description: Maximum requests allowed in the current window.
              schema:
                type: integer
            X-RateLimit-Remaining:
              description: Requests remaining in the current window.
              schema:
                type: integer
            X-RateLimit-Reset:
              description: >-
                Unix timestamp (seconds since epoch) at which the current
                rate-limit window resets.
              schema:
                type: integer
            Retry-After:
              description: Seconds to wait before retrying the request.
              schema:
                type: integer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    PaginatedResponse_WebhookListItemExternal_:
      properties:
        cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Cursor
          description: Cursor value to fetch next set of items
          examples:
            - MDE4YjE4ZWYtYzk5Yy03YTg2LTk5NDYtN2I3YzlkNTQzM2U1
        page_size:
          type: integer
          title: Page Size
          description: Indicates the count of items in the response
          examples:
            - 50
        items:
          items:
            $ref: '#/components/schemas/WebhookListItemExternal'
          type: array
          title: Items
          description: List of items in the current response
      type: object
      required:
        - cursor
        - page_size
        - items
      title: PaginatedResponse[WebhookListItemExternal]
    ErrorResponse:
      type: object
      required:
        - detail
      properties:
        detail:
          type: string
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WebhookListItemExternal:
      properties:
        webhook_id:
          type: string
          format: uuid
          title: Webhook Id
          description: Unique identifier of the webhook.
          examples:
            - 018e586b-7d0b-7bc9-be65-a8fdbc82d734
        name:
          type: string
          title: Name
          description: Name of the webhook.
        url:
          type: string
          title: Url
          description: URL the webhook is delivered to.
        is_enabled:
          type: boolean
          title: Is Enabled
          description: Whether the webhook is currently enabled.
        for_test_connector:
          anyOf:
            - type: boolean
            - type: 'null'
          title: For Test Connector
          description: Whether this webhook is scoped to a demo/test connector.
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        last_triggered_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Triggered At
          description: When this webhook last fired, if ever.
      type: object
      required:
        - webhook_id
        - name
        - url
        - is_enabled
      title: WebhookListItemExternal
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````