List DLQ messages
const url = 'https://api.hookbridge.io/v1/dlq/messages?limit=100';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.hookbridge.io/v1/dlq/messages?limit=100' \ --header 'Authorization: Bearer <token>'Retrieve messages that have permanently failed delivery (DLQ). These messages have exhausted all retry attempts and require manual intervention.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Maximum number of results to return
Example
100Pagination cursor from previous response
Responses
Section titled “Responses”DLQ messages retrieved successfully
object
object
object
When the first delivery attempt was made
Time spent processing the delivery (signing, headers, etc.)
Total time from message creation to successful delivery
Time spent waiting in the queue before first attempt
When the message was soft-deleted. Only present on deleted rows; omitted for live messages.
object
Unique identifier for this request (useful for support)
Example
{ "data": { "messages": [ { "message_id": "01935abc-def0-7123-4567-890abcdef012", "endpoint": "https://customer.app/webhooks", "status": "queued", "attempt_count": 1, "created_at": "2025-12-06T12:00:00Z", "delivered_at": "2025-12-06T12:00:05Z", "response_status": 200, "response_latency_ms": 120, "last_error": "connection timeout", "deleted_at": "2026-04-09T00:22:45Z" } ] }, "meta": { "request_id": "req_xyz123" }}Unauthorized - Invalid or missing API key
object
object
Machine-readable error code
Human-readable error message
object
Unique identifier for this request (useful for support)
Example
{ "error": { "code": "UNAUTHORIZED", "message": "Invalid or missing API key" }, "meta": { "request_id": "req_xyz123" }}Enter your credentials to populate code examples throughout the docs.