1.0.4 • Published 6 years ago
totalhash-api v1.0.4
totalhash-api
#totalhash API wrapper
Install
npm i totalhash-apiExample
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();
})();