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

    SearchResult

    Individual result item returned from an OSINT search (API v1 format).

    {
        "id": "string",
        "source": "string",
        "attributes": {
            "address": "string",
            "bio": "string",
            "company": "string",
            "country": "string",
            "created_at": "string",
            "domain": "string",
            "email": "string",
            "followers": "string",
            "following": "string",
            "gender": "string",
            "id": "string",
            "image": "string",
            "ip": "string",
            "link": "string",
            "location": "string",
            "name": "string",
            "phone": "string",
            "role": "string",
            "updated_at": "string",
            "username": "string",
            "property1": "string",
            "property2": "string"
        }
    }
    Built with