Sherlockeye API
  1. Searches
  • Welcome to Sherlockeye API
  • Authentication
  • Balance
    • Get token balance for the authenticated user
      GET
  • Searches
    • Create a new OSINT search
      POST
    • Get search details and results
      GET
    • Delete a search
      DELETE
  • Blockchain
    • Register a search on the blockchain
      POST
  • Summary
    • Get (or generate) an AI summary for a search
      GET
  • Schemas
    • ErrorResponse
    • BalanceResponse
    • CreateSearchRequest
    • CreateSearchResponse
    • GetSearchResponse
    • DeleteSearchResponse
    • BlockchainResponse
    • SummaryResponse
    • SearchResult
    • BlockchainData
  1. Searches

Delete a search

DELETE
https://api.sherlockeye.io/v1/searches/{searchId}
Searches
Last modified:2026-01-28 20:51:30
Permanently deletes a search and removes its identifier from the user's index.
This operation is irreversible.

Request

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

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.sherlockeye.io/v1/searches/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200
application/json
Search successfully deleted.
Body

Example
{
    "success": true,
    "data": {
        "searchId": "string",
        "deleted": true
    }
}
🟠400
🟠401
🟠404
🔴500
Modified at 2026-01-28 20:51:30
Previous
Get search details and results
Next
Register a search on the blockchain
Built with