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

# List Webhook Logs

> Return webhook execution logs for the current user.

Supports optional filtering by ``subscription_id`` and pagination
via ``limit`` / ``offset``.  Results are ordered newest-first.



## OpenAPI

````yaml /api-reference/openapi.json get /api/webhooks/logs
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/webhooks/logs:
    get:
      tags:
        - webhooks
      summary: List Webhook Logs
      description: |-
        Return webhook execution logs for the current user.

        Supports optional filtering by ``subscription_id`` and pagination
        via ``limit`` / ``offset``.  Results are ordered newest-first.
      operationId: list_webhook_logs_api_webhooks_logs_get
      parameters:
        - name: subscription_id
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            title: Subscription Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````

## Related topics

- [Retrigger Webhook Log](/api-reference/webhooks/retrigger-webhook-log.md)
- [Get Webhook Log By Id](/api-reference/webhooks/get-webhook-log-by-id.md)
- [Get Webhook Log Body](/api-reference/webhooks/get-webhook-log-body.md)
- [Get Webhook Log Attachment](/api-reference/webhooks/get-webhook-log-attachment.md)
- [Webhooks](/guides/webhooks.md)
