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

# Get Sample Webhook Data

> Retrieves sample data for a specific webhook type to test your integration

## Overview

Retrieves sample data for a specific webhook event type. Use this endpoint to test your webhook integration and understand the payload structure before subscribing.

## Use Cases

* **Testing**: Validate your webhook handler with real data structure
* **Development**: Build your integration with sample payloads
* **Documentation**: See what fields are available for each event type

## Sample Data

The endpoint returns up to 3 recent records matching the event type, or sample test data if no records exist in your workspace.


## OpenAPI

````yaml GET /v1/hooks/perform-list
openapi: 3.1.0
info:
  title: WaLead API
  description: >-
    WaLead Public API for managing LinkedIn outreach campaigns, leads, and
    analytics
  version: 1.0.0
  contact:
    name: WaLead Support
    url: https://walead.ai
servers:
  - url: https://app-api.walead.ai/api
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /v1/hooks/perform-list:
    get:
      summary: Get Sample Webhook Data
      description: >-
        Retrieves sample data for a specific webhook type to test your
        integration
      parameters:
        - name: type
          in: query
          description: Webhook event type
          required: true
          schema:
            type: string
            enum:
              - lead_tagged_interested
              - lead_meeting_booked
              - lead_status_matched
              - lead_status_discarded
              - campaign_completed
              - message_received
              - linkedin_account_disconnected
              - connection_request_accepted
              - campaign_without_leads
      responses:
        '200':
          description: Sample data retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
        '401':
          description: Unauthorized - Invalid API Key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - statusCode
        - message
      properties:
        statusCode:
          type: integer
          description: HTTP status code
        message:
          type: string
          description: Error message
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Generate from your WaLead dashboard.

````