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

    WebhookListResponse

    {
        "success": true,
        "data": [
            {
                "id": "string",
                "userId": "string",
                "organizationId": "string",
                "url": "http://example.com",
                "events": [
                    "search.completed"
                ],
                "enabled": true,
                "platform": "slack",
                "formatting": "rich",
                "createdAt": "2019-08-24T14:15:22.123Z",
                "updatedAt": "2019-08-24T14:15:22.123Z",
                "lastDelivery": {
                    "status": "success",
                    "timestamp": "2019-08-24T14:15:22.123Z"
                }
            }
        ]
    }
    Built with