Our data breach lookup API allows you to search through data breaches, whether it's simply for notification purposes, investigations or other common open-source intelligence use-cases.
Supported search types: username, email, lastip, hash, password, name, _domain.
POST https://api.inteldive.com/data/search
Content-Type: application/json
Auth: API_KEY
{
"terms": [ { "term": "[email protected]", "type": "email" } ]
}
{
"size": 800,
"took": 135,
"matches": ["[email protected]"],
"results": {
"0001_EXAMPLE_COM_128K_CATEGORY_042014": [{ /* ...data_object */ }],
"0002_EXAMPLE_NET_206M_CATEGORY_122023": [{ /* ...data_object */ }],
/* 798 more results */
}
}