1. Searches
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. Searches

Get search details and results

GET
/v1/searches/{searchId}
Returns metadata and results for a specific search job.
Depending on the processing state, the status field can be:
processing: the search is still running and results may be incomplete.
complete: the search finished (successfully or after timeout; results are preserved either way).
The expiresAt field indicates when the stored results become inaccessible (retention limit).
The results array contains individual OSINT hits, and blockchainData, if present,
provides a verifiable record of the search on the blockchain.

Request

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

Responses

🟢200
application/json
Search found; status and results returned.
Body

🟠400
🟠401
🟠404
🟠429
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sherlockeye.io/v1/searches/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Completed search with results (API v1 format)
{
    "success": true,
    "data": {
        "searchId": "f6f3b720-4f3a-4dcf-9d0e-6e5efc46f8c9",
        "query": "email:\"someone@example.com\"",
        "status": "complete",
        "createdAt": "2025-01-01T12:00:05.000Z",
        "expiresAt": "2025-12-31T23:59:59.000Z",
        "results": [
            {
                "id": "result-1",
                "source": "google",
                "attributes": {
                    "link": "https://profiles.google.com/someone"
                }
            },
            {
                "id": "result-2",
                "source": "microsoft",
                "attributes": {
                    "name": "john doe"
                }
            }
        ],
        "blockchainData": null
    }
}
Modified at 2026-03-24 12:06:30
Previous
Create a new asynchronous OSINT search
Next
Run a synchronous OSINT search with timeout
Built with