Overview
Scanii is a cloud-based malware scanning API that accepts file uploads and returns a verdict on whether the file contains threats. It supports documents, images, archives, and executables, making it practical for user upload pipelines on web applications. Beginners can use it to prevent malicious files from being stored on their servers.
Beginner Tip
Sign up at scanii.com for a free trial key. Authenticate using HTTP Basic Auth with your API key as the username and an empty string as the password — do not put the key in a header.
Available Data
Example Response
{
"url": "https://example.com",
"safe": true,
"threat_level": "none",
"categories": [
"clean"
],
"scan_date": "2025-01-15T10:00:00Z"
} Field Reference
id Unique identifier for this scan job; use it to retrieve results for async scans status Scan status: pending for async processing, done when complete findings List of threat names detected in the file; empty array means no threats found content_type MIME type of the scanned file as detected by Scanii content_length Size of the scanned file in bytes creation_date ISO 8601 timestamp when the scan was created Implementation Example
const url = "https://docs.scanii.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →AbuseIPDB
AbuseIPDB lets you check whether an IP address has been reported for malicious activity like spam, hacking, or DDoS attacks.
AlienVault Open Threat Exchange (OTX)
AlienVault Open Threat Exchange (OTX) provides programmatic access to ip/domain/url reputation via REST API.
CAPEsandbox
CAPEsandbox is an open-source malware analysis platform that executes suspicious files in an isolated environment and reports on their behavior.
Google Safe Browsing
Google Safe Browsing lets you check any URL against Google's constantly updated lists of phishing sites, malware distributors, and unwanted software.
MalDatabase
MalDatabase provides programmatic access to provide malware datasets and threat intelligence feeds via REST API.