https://github.com/maximking1/vtapi_v3
VirusTotal API Version 3 NPM Package!
https://github.com/maximking1/vtapi_v3
npm npm-package virustotal virustotal-api
Last synced: 4 months ago
JSON representation
VirusTotal API Version 3 NPM Package!
- Host: GitHub
- URL: https://github.com/maximking1/vtapi_v3
- Owner: MaximKing1
- Created: 2021-06-25T16:19:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-27T19:44:37.000Z (over 3 years ago)
- Last Synced: 2025-05-21T09:57:29.145Z (5 months ago)
- Topics: npm, npm-package, virustotal, virustotal-api
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/vtapi_v3
- Size: 268 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VirusTotal API V3
## Project Information

[](https://github.com/MaximKing1/VTAPI_V3/actions/workflows/publish.yml)## Get Scan Results
```js
const { vtClient } = require('vtotal_v3');const client = new vtClient("NUNYA", false); // ("apiKey", extraDebuggingMode )
client.scanInfo("cf4b367e49bf0b22041c6f065f4aa19f3cfe39c8d5abc0617343d1a66c6a26f5").then(res => {
console.log(res)
// Your Code Here!
});
```## Scan URL
```js
const { vtClient } = require('vtotal_v3');const client = new vtClient("NUNYA", false); // ("apiKey", extraDebuggingMode )
client.scanDomain("DOMAIN.COM/URL").then(res => {
console.log(res)
// Your Code Here!
});
```## Scan IP
```js
const { vtClient } = require('vtotal_v3');const client = new vtClient("NUNYA", false); // ("apiKey", extraDebuggingMode )
client.scanDomain("IP_ADDRESS").then(res => {
console.log(res)
// Your Code Here!
});
```## Scan Domain
```js
const { vtClient } = require('vtotal_v3');const client = new vtClient("NUNYA", false); // ("apiKey", extraDebuggingMode )
client.scanDomain("DOMAIN.COM").then(res => {
console.log(res)
// Your Code Here!
});
```## Fetch File Feeds at Certain Time
```js
const { vtClient } = require('vtotal_v3');const client = new vtClient("NUNYA", false); // ("apiKey", extraDebuggingMode )
client.fetchFileFeedTimes("20200307").then(res => { // YYYYMMDD 2020 03 07 etc
console.log(res)
// Your Code Here!
});
```fetchFileFeedTimes