curl --request GET \
--url https://api.dnsradar.dev/webhooks/{webhook_id}/requests \
--header 'X-Api-Key: <api-key>'{
"limit": 20,
"after": "<string>",
"before": "<string>",
"has_more": true,
"data": [
{
"id": "req_abc123...",
"webhook_id": "whk_abc123...",
"event_id": "evt_abc123...",
"created": "2023-11-07T05:31:56Z",
"status": "PENDING",
"retries": 0,
"delivered": "2023-11-07T05:31:56Z",
"status_code": 200,
"response_body": "accepted",
"last_attempt": "2023-11-07T05:31:56Z"
}
]
}Get a paginated list of webhook execution requests.
curl --request GET \
--url https://api.dnsradar.dev/webhooks/{webhook_id}/requests \
--header 'X-Api-Key: <api-key>'{
"limit": 20,
"after": "<string>",
"before": "<string>",
"has_more": true,
"data": [
{
"id": "req_abc123...",
"webhook_id": "whk_abc123...",
"event_id": "evt_abc123...",
"created": "2023-11-07T05:31:56Z",
"status": "PENDING",
"retries": 0,
"delivered": "2023-11-07T05:31:56Z",
"status_code": 200,
"response_body": "accepted",
"last_attempt": "2023-11-07T05:31:56Z"
}
]
}API key used to authenticate yourself on DNSRadar. Obtain your API key from your DNSRadar dashboard.
Cursor for fetching the next page of results. Use the value from the previous response's 'after' field.
Cursor for fetching the previous page of results. Use the value from the previous response's 'before' field.
Number of items per page (1-100, default: 20)
1 <= x <= 100Field to order results by
Sort direction
asc, desc Filter requests created before this UTC timestamp
Filter requests created after this UTC timestamp
Filter requests delivered before this UTC timestamp
Filter requests delivered after this UTC timestamp
Filter by HTTP status code
Filter requests with last attempt before this UTC timestamp
Filter requests with last attempt after this UTC timestamp
Filter requests by monitor UUID
Paginated list of webhook requests
Paginated response wrapper for list endpoints. Uses cursor-based pagination with after/before parameters.
Number of items per page (max 100)
20
Cursor to fetch the next page of results
Cursor to fetch the previous page of results
Indicates if there are more items to fetch
Array of items for the current page
Show child attributes