An open API service indexing awesome lists of open source software.

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!

Awesome Lists containing this project

README

          

# VirusTotal API V3

## Project Information
![Snyk Vulnerabilities for GitHub Repo](https://img.shields.io/snyk/vulnerabilities/github/MaximKing1/VTAPI_V3)
[![Auto Publish](https://github.com/MaximKing1/VTAPI_V3/actions/workflows/publish.yml/badge.svg)](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