totalhash-api
v2.0.0
Published
[#totalhash](https://totalhash.cymru.com/api-documentation/) API wrapper
Downloads
26
Readme
totalhash-api
#totalhash API wrapper
Install
npm i totalhash-api
Example
const { totalhash } = require('totalhash-api');
const api = totalhash('id', 'api key');
(async () => {
const searchResults = await api.search('filename:core.dll');
const analysisResults = await api.analysis('42493f2b568826215a85529a238dfdddf57a6868');
const usage = await api.usage();
})();