NAV
shell python java go

Introduction

INLYSE API for all malware classification services. It serves as the central access point for all requests to the backend services. It has several functions that should make the API much more stable. For this purpose a Job and Worker pool was implemented to scale and stabilize the service more easily.

Features

Getting started

Dependencies

Copy to Clipboard
cURL

To use the provided code, you need to have the following imports/dependencies for the language you are using.

Rate Limits

Request

Copy to Clipboard
curl -v --stderr - https://malware.ai/api/stats --header "Authorization: Bearer {api-key}" | grep "x-ratelimit"

Console output (the format can change a little depending on what language you are using)

Copy to Clipboard
X-Ratelimit-Limit: int X-Ratelimit-Remaining: int X-Ratelimit-Reset: DateTime

The API has rate limits that cannot be exceeded.

x-ratelimit-limit describes how many requests you can make in total
x-ratelimit-remainingdescribes how many requests are remaining
x-ratelimit-reset describes when the rate limit gets reset

You can check your rate limits like this

If the code does not compile, make sure you installed/imported all the dependencies

Endpoints Overview

Documentation

Ping /ping

Request

Copy to Clipboard
curl -s https://www.malware.ai/ping

Response

Copy to Clipboard
PONG

Service still alive?

This is an extra endpoint for the sole purpose of expressing its availability

If the code does not compile, make sure you installed/imported all the dependencies

Stats /api/stats

Request

Copy to Clipboard
curl -s https://malware.ai/api/stats --header "Authorization: Bearer {api-key}"

Response

Copy to Clipboard
{ "AnalysedFiles": "int", "Traffic": "int" }

User statistics

Returns user statistics. How many files and how much traffic has already been analyzed

If the code does not compile, make sure you installed/imported all the dependencies

Scan File /api/files/

Request

Copy to Clipboard
curl -s -F 'file=@{absolute_path_to_file}' https://malware.ai/api/files/ --header "Authorization: Bearer {api-key}"

Response

Copy to Clipboard
{ "id":"492366f7-1806-4d33-a9bb-eac4ef2007ce" }

Upload and scan a file

This endpoint allows you to upload a file for scanning. Before performing your submissions we encourage you to retrieve the latest report on the file, if it is recent enough you might want to save time and bandwidth by making use of it.

Restrictions

File size limit is 17MB File format has to be PDF or a ZIP with one PDF inside.

If the code does not compile, make sure you installed/imported all the dependencies

Scan File by URL /api/files/url

Request

Copy to Clipboard
curl -s -X POST https://malware.ai/api/files/url --header "Authorization: Bearer {api-key}" --header 'Content-Type: application/json' -d '{"url":"{url}"}'

Response

Copy to Clipboard
{ "id":"492366f7-1806-4d33-a9bb-eac4ef2007ce" }

Scan a file by URL

This endpoint allows you to submit a file for scanning, by uploading an url pointing to the file.

Restrictions

File size limit is 17MB File format has to be PDF or a ZIP with one PDF inside.

If the code does not compile, make sure you installed/imported all the dependencies

Retrieve Classification /api/analysis/:id

Request

Copy to Clipboard
curl -s https://malware.ai/api/analysis/{analysis_id} --header "Authorization: Bearer {api-key}"

Response normal

Copy to Clipboard
{ "ID":"0b7d2cde-1d5f-4a59-961e-928569af46dd", "MD5":"d9583012ec400655dfda421c3ce6b225", "SHA1":"13e1b5be530c46f040e668d52d48e00ed2b9e986", "SHA256":"4bff806b8f05235cfca3e80ec19d271ebec33a1a8ece84c12a7ffd3a6348c3a7", "SHA512":"71c92e95a209a2aecb5f01f4a5ac2f396ab31199b2c932c688141db53dca122df1d9d20ae3c7951a6fea7c6a301fe9375105b0b5852f99ec5d2a71fc8a917861", "Filename":"file.pdf", "Size":174811, "FileType":"application/pdf", "Label":"benign" }

Response extended

Copy to Clipboard
{ "ID":"9d3db18f-c67a-428f-816b-8bf15a4344c6", "MD5":"5b8865422e95462ecb6cb23ba8597cc9", "SHA1":"5a105b34b1f1eabbc4b261477b60fa3b30408f54", "SHA256":"fc0dd80c491c2cd88f3bb863affa313f118c009640ecb8573a192117628e9b28", "SHA512":"f3827e583a3d882b5ad39b83dae879d1733836eb7dbb8fefdbfac932acd42fdd3655a0f216ef51c63450f65dd89955be521b32cc90e1b9fa0449e1f0770a622b", "Filename":"test.pdf", "Size":12344, "FileType":"application/pdf", "Label":"malicious", "ScoreBenign":"0.3390300050287237", "ScoreMalicious":"0.6609699949712763" }

Retrieve file scan reports

Returns the data of the analysis depending on the API key. There are three different classes. Normal and Extended Keys. Extenden keys also return the benign and malicous Scores in addition to the normal information.

If the code does not compile, make sure you installed/imported all the dependencies

List Analysis /api/analysis?filter=all

Request

Copy to Clipboard
curl -s https://malware.ai/api/analysis?filter={search-filter} --header "Authorization: Bearer {api-key}"

Response

Copy to Clipboard
["1c67bcf5-6458-43bb-a7a9-f8a0d4e86d30"]

Retrieve a list of submitted files

Returns a list with the last 1000 analyses. It is possible to specify a filter.

Possible Filters are: all, finished, unfinished, error

If the code does not compile, make sure you installed/imported all the dependencies

Errors

The API returns normal HTTP status codes to indicate if the request was successful or not.

Status Code Explanation
200 - OK successful request
201 - Created The analysis just started
202 - Accepted The analysis is still in progress
400 - Bad Request There was an error in the request (perhaps a missing parameter)
401 - Unauthorized The provided API-key is not valid (or missing)
404 - Not Found The requested API endpoint does not exist
500 - Internal Server Error Something went wrong and you should try to upload the file again