Sherlockeye API
  1. Blockchain
  • 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. Blockchain

Register a search on the blockchain

POST
https://api.sherlockeye.io/v1/searches/{searchId}/blockchain
Blockchain
Last modified:2026-01-28 20:51:30
Registers the current state of a search on the blockchain, so that its
existence and key attributes can be independently verified.
Calling this endpoint multiple times for the same searchId is idempotent:
if a blockchain record already exists, it will be returned instead of
creating a new one.

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 POST 'https://api.sherlockeye.io/v1/searches//blockchain' \
--header 'Authorization: Bearer <token>'

Responses

🟢200
application/json
Blockchain processing started or an existing record was returned.
Body

Example
{
    "success": true,
    "data": {
        "searchId": "string",
        "alreadyExists": true,
        "blockchainData": {
            "signature": "string",
            "confirmed": true,
            "timestamp": 0,
            "explorerUrl": "http://example.com"
        }
    }
}
🟠400
🟠401
🟠403
🟠404
🔴500
Modified at 2026-01-28 20:51:30
Previous
Delete a search
Next
Get (or generate) an AI summary for a search
Built with