1. Webhooks
Sherlockeye API
  • Getting started
  • Searches
    • Create a new asynchronous OSINT search
      POST
    • Get search details and results
      GET
    • Run a synchronous OSINT search with timeout
      POST
    • Delete a search
      DELETE
  • Blockchain
    • Register a search on the blockchain
      POST
  • Webhooks
    • Create a new webhook
      POST
    • List all webhooks for the authenticated user
      GET
    • Get webhook details
      GET
    • Update a webhook
      PUT
    • Delete a webhook
      DELETE
    • Get webhook delivery history
      GET
    • Retry a webhook delivery
      POST
  • Balance
    • Get token balance for the authenticated user
      GET
  • Schemas
    • SearchResult
    • ErrorResponse
    • BalanceResponse
    • CreateSearchRequest
    • CreateSyncSearchRequest
    • CreateSyncSearchResponse
    • CreateSearchResponse
    • GetSearchResponse
    • DeleteSearchResponse
    • BlockchainResponse
    • BlockchainData
    • CreateWebhookRequest
    • UpdateWebhookRequest
    • WebhookResponse
    • WebhookListResponse
    • Webhook
    • DeleteWebhookResponse
    • WebhookDeliveriesResponse
    • WebhookRetryResponse
    • WebhookDelivery
    • WebhookDeliveryAttempt
  1. Webhooks

Get webhook delivery history

GET
/v1/webhooks/{webhookId}/deliveries
Returns the delivery history for a webhook, showing all attempts to deliver events.
Results are paginated, with most recent deliveries first. Data is scoped to the organization.
Enterprise only. This endpoint is exclusive to enterprise clients; not available to individual or non-enterprise users.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Path Params

Query Params

Responses

🟢200
application/json
Delivery history successfully retrieved.
Body

🟠401
🟠403
🟠404
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sherlockeye.io/v1/webhooks//deliveries?limit&offset' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "success": true,
    "data": [
        {
            "id": "string",
            "webhookId": "string",
            "event": "search.completed",
            "payload": {},
            "status": "success",
            "attempts": [
                {
                    "attempt": 0,
                    "timestamp": "2019-08-24T14:15:22.123Z",
                    "statusCode": 0,
                    "responseTime": 0,
                    "error": "string",
                    "success": true
                }
            ],
            "createdAt": "2019-08-24T14:15:22.123Z",
            "deliveredAt": "2019-08-24T14:15:22.123Z",
            "lastAttemptAt": "2019-08-24T14:15:22.123Z"
        }
    ]
}
Modified at 2026-03-04 16:42:25
Previous
Delete a webhook
Next
Retry a webhook delivery
Built with