Sherlockeye API
    • 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

    GetSearchResponse

    {
        "success": true,
        "data": {
            "searchId": "string",
            "query": "string",
            "status": "processing",
            "timestamp": "2019-08-24T14:15:22.123Z",
            "expiresAt": 0,
            "results": [
                {
                    "id": "string",
                    "source": "string",
                    "date": "2019-08-24T14:15:22.123Z",
                    "name": "string",
                    "tag": [
                        "string"
                    ],
                    "additionalFields": [
                        {
                            "key": "string",
                            "value": "string"
                        }
                    ]
                }
            ],
            "summary": "string",
            "blockchainData": {
                "signature": "string",
                "confirmed": true,
                "timestamp": 0,
                "explorerUrl": "http://example.com"
            }
        }
    }
    Built with