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
      • List all webhooks for the authenticated user
      • Get webhook details
      • Update a webhook
      • Delete a webhook
      • Get webhook delivery history
      • Retry a webhook delivery
    • Balance
      • Get token balance for the authenticated user
    • Schemas
      • SearchResult
      • ErrorResponse
      • BalanceResponse
      • CreateSearchRequest
      • CreateSyncSearchRequest
      • CreateSyncSearchResponse
      • CreateSearchResponse
      • GetSearchResponse
      • DeleteSearchResponse
      • BlockchainResponse
      • BlockchainData
      • CreateWebhookRequest
      • UpdateWebhookRequest
      • WebhookResponse
      • WebhookListResponse
      • Webhook
      • DeleteWebhookResponse
      • WebhookDeliveriesResponse
      • WebhookRetryResponse
      • WebhookDelivery
      • WebhookDeliveryAttempt

    WebhookDelivery

    {
        "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"
    }
    Built with