Private Lookups

The Privacy Search endpoint implements "k-anonymity" to allow you to search sensitive data without revealing what. In our implementation, all the search data has been converted to lowercase and then hashed with MD5.

Depending on how critical it is that your search terms are hard to guess, you can enter as few as the first 7 or up to the full 32 characters of an MD5 hash. You can also search multiple fake prefixes alongside the real one.

API Usage

Supported search types: email, username.

Request

POST https://api.inteldive.com/data/privacy-search
Content-Type: application/json
Auth: API_KEY
{
  "terms": [ { "term": "a2b73300", "type": "email" } ]
}

Response

{
  "size": 2,
  "took": 97,
  "matches": ["a2b73300b01280e21cd1e045df30e07d", "a2b73300f9b67fba2628ee06516b09b6"],
  "results": {
    "a2b73300b01280e21cd1e045df30e07d": [{ /* ...data_object, */ "source": "0001_EXAMPLE_COM_128K_CATEGORY_042014" }],
    "a2b73300f9b67fba2628ee06516b09b6": [{ /* ...data_object, */ "source": "0002_EXAMPLE_NET_206M_CATEGORY_122023" }]
  }
}