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

# List webhook requests

> Get a paginated list of webhook execution requests.



## OpenAPI

````yaml https://api.dnsradar.dev/openapi.json get /webhooks/{webhook_id}/requests
openapi: 3.0.3
info:
  title: DNSRadar API
  description: DNSRadar API - Monitor your DNS records and get notified when they change.
  version: 1.0.0
  contact:
    name: DNSRadar Support
    email: support@dnsradar.dev
    url: https://dnsradar.dev
servers:
  - url: https://api.dnsradar.dev
    description: Production server
security:
  - ApiKeyAuth: []
tags:
  - name: Agents
    description: Team member management and invitations
  - name: Organization
    description: Organization settings, billing, and subscription management
  - name: Monitors
    description: DNS monitoring configuration and management
  - name: Events
    description: DNS change events and history
  - name: Groups
    description: Monitor grouping and organization
  - name: Webhooks
    description: Webhook configuration for event notifications
paths:
  /webhooks/{webhook_id}/requests:
    get:
      tags:
        - Webhooks
      summary: List webhook requests
      description: Get a paginated list of webhook execution requests.
      operationId: listWebhookRequests
      parameters:
        - name: webhook_id
          in: path
          required: true
          schema:
            type: string
        - $ref: '#/components/parameters/PaginationAfter'
        - $ref: '#/components/parameters/PaginationBefore'
        - $ref: '#/components/parameters/PaginationLimit'
        - $ref: '#/components/parameters/PaginationOrderBy'
        - $ref: '#/components/parameters/PaginationOrderWay'
        - name: created_before
          in: query
          description: Filter requests created before this UTC timestamp
          schema:
            type: integer
            format: int64
        - name: created_after
          in: query
          description: Filter requests created after this UTC timestamp
          schema:
            type: integer
            format: int64
        - name: delivered_before
          in: query
          description: Filter requests delivered before this UTC timestamp
          schema:
            type: integer
            format: int64
        - name: delivered_after
          in: query
          description: Filter requests delivered after this UTC timestamp
          schema:
            type: integer
            format: int64
        - name: status_code
          in: query
          description: Filter by HTTP status code
          schema:
            type: integer
        - name: last_attempt_before
          in: query
          description: Filter requests with last attempt before this UTC timestamp
          schema:
            type: integer
            format: int64
        - name: last_attempt_after
          in: query
          description: Filter requests with last attempt after this UTC timestamp
          schema:
            type: integer
            format: int64
        - name: monitor_id
          in: query
          description: Filter requests by monitor UUID
          schema:
            type: string
      responses:
        '200':
          description: Paginated list of webhook requests
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/PaginatedResponse'
                  - type: object
                    properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/WebhookRequest'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          $ref: '#/components/responses/NotFoundError'
      security:
        - ApiKeyAuth: []
components:
  parameters:
    PaginationAfter:
      name: after
      in: query
      description: >-
        Cursor for fetching the next page of results. Use the value from the
        previous response's 'after' field.
      schema:
        type: string
    PaginationBefore:
      name: before
      in: query
      description: >-
        Cursor for fetching the previous page of results. Use the value from the
        previous response's 'before' field.
      schema:
        type: string
    PaginationLimit:
      name: limit
      in: query
      description: 'Number of items per page (1-100, default: 20)'
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 20
    PaginationOrderBy:
      name: order_by
      in: query
      description: Field to order results by
      schema:
        type: string
    PaginationOrderWay:
      name: order_way
      in: query
      description: Sort direction
      schema:
        type: string
        enum:
          - asc
          - desc
        default: asc
  schemas:
    PaginatedResponse:
      type: object
      description: >-
        Paginated response wrapper for list endpoints. Uses cursor-based
        pagination with after/before parameters.
      properties:
        limit:
          type: integer
          description: Number of items per page (max 100)
          example: 20
        after:
          type: string
          nullable: true
          description: Cursor to fetch the next page of results
        before:
          type: string
          nullable: true
          description: Cursor to fetch the previous page of results
        has_more:
          type: boolean
          description: Indicates if there are more items to fetch
        data:
          type: array
          description: Array of items for the current page
          items:
            type: object
    WebhookRequest:
      type: object
      description: Record of a webhook execution
      properties:
        id:
          type: string
          description: Request identifier with 'req_' prefix
          example: req_abc123...
        webhook_id:
          type: string
          description: UUID of the associated webhook
          example: whk_abc123...
        event_id:
          type: string
          nullable: true
          description: UUID of the associated event
          example: evt_abc123...
        created:
          type: string
          format: date-time
          description: Datetime when the webhook request was created in ISO 8601 format
        status:
          type: string
          enum:
            - PENDING
            - DELIVERED
            - RETRYING
            - FAILED
          description: Current status of the webhook request
        retries:
          type: integer
          description: Number of retry attempts made
          example: 0
        delivered:
          type: string
          format: date-time
          nullable: true
          description: >-
            Datetime when the webhook was successfully delivered in ISO 8601
            format
        status_code:
          type: integer
          nullable: true
          description: HTTP status code from the last delivery attempt
          example: 200
        response_body:
          type: string
          nullable: true
          description: >-
            Response body from the last delivery attempt (truncated to 4000
            chars)
          example: accepted
        last_attempt:
          type: string
          format: date-time
          nullable: true
          description: >-
            Datetime when the webhook was sent for the last time, in ISO 8601
            format
    Error:
      type: object
      description: Error response
      properties:
        code:
          type: integer
          description: HTTP status code
        error:
          oneOf:
            - type: string
              description: Error message
            - type: object
              description: Validation errors by field
              additionalProperties:
                type: string
        errors:
          type: object
          description: Field-specific validation errors
          additionalProperties:
            type: string
  responses:
    UnauthorizedError:
      description: Authentication is missing or invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: 401
            error: Unauthorized
    NotFoundError:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: 404
            error: Not found
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: >-
        API key used to authenticate yourself on DNSRadar. Obtain your API key
        from your DNSRadar dashboard.

````