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

# List webhooks

> Returns every outbound webhook subscription in the caller's tenant. Secrets are redacted in every list response — the plaintext is only returned at create time. Use to render an operator surface for inspecting registered URLs, events, and filters.



## OpenAPI

````yaml /openapi.json get /webhooks
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /webhooks:
    get:
      tags:
        - Webhooks
      summary: List webhooks
      description: >-
        Returns every outbound webhook subscription in the caller's tenant.
        Secrets are redacted in every list response — the plaintext is only
        returned at create time. Use to render an operator surface for
        inspecting registered URLs, events, and filters.
      responses:
        '200':
          description: List of webhooks (secrets redacted)
          content:
            application/json:
              schema:
                type: object
                properties:
                  webhooks:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        url:
                          type: string
                        events:
                          type: array
                          items:
                            type: string
                        type_filter:
                          type: string
                          nullable: true
                        secret:
                          type: string
                        active:
                          type: boolean
                        created_at:
                          type: string
                        updated_at:
                          type: string
                      required:
                        - id
                        - url
                        - events
                        - secret
                        - active
                        - created_at
                        - updated_at
                required:
                  - webhooks
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - unauthorized
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or OAuth Token
      description: Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

````