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

# List Webhook Endpoints

> List this org's webhook endpoints (never returns the signing secret).



## OpenAPI

````yaml /api-reference/openapi.json get /webhook-endpoints
openapi: 3.1.0
info:
  description: >-
    Submit loan packages for automated quality-control review and retrieve
    results. Authenticate every request with your organization's API key:
    `Authorization: Bearer <key>`.
  title: Flightline Public API
  version: '2026-05-30'
servers:
  - url: https://api.flightlinehq.com/v1
security: []
paths:
  /webhook-endpoints:
    get:
      tags:
        - webhooks
      summary: List Webhook Endpoints
      description: List this org's webhook endpoints (never returns the signing secret).
      operationId: list_webhook_endpoints_webhook_endpoints_get
      parameters:
        - in: header
          name: authorization
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - in: header
          name: X-Api-Key
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookEndpointList'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    WebhookEndpointList:
      additionalProperties: false
      description: The ``GET /webhook-endpoints`` response.
      properties:
        endpoints:
          default: []
          items:
            $ref: '#/components/schemas/WebhookEndpointResource'
          title: Endpoints
          type: array
      title: WebhookEndpointList
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    WebhookEndpointResource:
      additionalProperties: false
      description: |-
        A registered webhook endpoint, as returned on list/get.

        NEVER carries the signing secret — only a non-reversible masked hint so
        the customer can tell two endpoints apart.
      properties:
        created_at:
          format: date-time
          title: Created At
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        enabled:
          title: Enabled
          type: boolean
        id:
          format: uuid
          title: Id
          type: string
        secret_hint:
          description: >-
            Masked tail of the signing secret, e.g. 'whsec_…a1b2'. Not the
            secret.
          title: Secret Hint
          type: string
        url:
          title: Url
          type: string
      required:
        - id
        - url
        - enabled
        - secret_hint
        - created_at
      title: WebhookEndpointResource
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````