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

# Get Webhook Logs Public

> Get delivery logs for a webhook.

**Required scope:** `read`

Shows recent delivery attempts with status, response, and timing info.
Useful for debugging webhook issues.



## OpenAPI

````yaml /openapi/openapi-external.json get /webhooks/{webhook_id}/logs
openapi: 3.1.0
info:
  title: Quikly.ai External API
  version: 1.0.0
  description: >-
    REST API for external integrations with Quikly.ai. Authenticate using an API
    key passed in the X-API-Key header. Use these endpoints from n8n, Zapier,
    custom scripts, or any HTTP client.
servers: []
security:
  - ApiKeyAuth: []
tags:
  - name: Proposals
    description: Create, read, update, and manage client proposals.
  - name: Profile
    description: Read and update the authenticated user's profile.
  - name: Templates
    description: Manage reusable proposal templates.
  - name: AI Services
    description: >-
      AI-powered analysis: rate recommendations, brief analysis,
      differentiators.
  - name: Public API
  - name: Usage
    description: Query API usage and quota information.
  - name: Webhooks
    description: Manage webhook subscriptions for real-time events.
  - name: Agent
    description: Interact with the AI agent for automated workflows.
  - name: Lead Sessions
    description: Track and manage lead capture sessions.
paths:
  /webhooks/{webhook_id}/logs:
    get:
      tags:
        - Webhooks
      summary: Get Webhook Logs Public
      description: |-
        Get delivery logs for a webhook.

        **Required scope:** `read`

        Shows recent delivery attempts with status, response, and timing info.
        Useful for debugging webhook issues.
      operationId: get_webhook_logs_public_api_external_v1_webhooks__webhook_id__logs_get
      parameters:
        - name: webhook_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Webhook Id
        - name: skip
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Skip
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookLogListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    WebhookLogListResponse:
      properties:
        logs:
          items:
            $ref: '#/components/schemas/WebhookLogResponse'
          type: array
          title: Logs
        total:
          type: integer
          title: Total
      type: object
      required:
        - logs
        - total
      title: WebhookLogListResponse
      description: Schema for listing webhook logs.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WebhookLogResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        eventType:
          type: string
          title: Eventtype
        payload:
          type: string
          title: Payload
        statusCode:
          anyOf:
            - type: integer
            - type: 'null'
          title: Statuscode
        responseBody:
          anyOf:
            - type: string
            - type: 'null'
          title: Responsebody
        errorMessage:
          anyOf:
            - type: string
            - type: 'null'
          title: Errormessage
        durationMs:
          anyOf:
            - type: integer
            - type: 'null'
          title: Durationms
        success:
          type: boolean
          title: Success
        createdAt:
          type: string
          format: date-time
          title: Createdat
      type: object
      required:
        - id
        - eventType
        - payload
        - success
        - createdAt
      title: WebhookLogResponse
      description: Schema for webhook log response.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key obtained from Quikly.ai Settings → API Keys.
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````