List private files

🚧

Special privileges required

Private Scanning endpoints are only available to users with Private Scanning license.

Returns a list of previously analysed private files. The files are always ordered by SHA256.

{
  "meta": {
    "cursor": <string>,
    "count": <int>
  },
  "data": {
    <PRIVATE_FILE_OBJECT>,
    <PRIVATE_FILE_OBJECT>,
    ...
  },
  "links": {
    "self": <string>,
    "next": <string>
  }
}
{
	"meta": {
		"cursor": "079b1db08ac52c94be8fdb5b638134a6109a510bc10a87c15413d6c793985678",
		"count": 19
	},
	"data": [
		{
			"attributes": {
				"type_description": "Windows Installer",
        ...
      },
      "type": "private_file",
      "id": "079b1db08ac52c94be8fdb5b638134a6109a510bc10a87c15413d6c793985678",
      "links": {
        "self": "https://www.virustotal.com/api/v3/private/files/079b1db08ac52c94be8fdb5b638134a6109a510bc10a87c15413d6c793985678"
      }
    },
    ...
  ],
  "links": {
		"self": "https://www.virustotal.com/api/v3/private/files?limit=1",
		"next": "https://www.virustotal.com/api/v3/private/files?cursor=079b1db08ac52c94be8fdb5b638134a6109a510bc10a87c15413d6c793985678&limit=1"
	}
}
Query Params
int32
Defaults to 10

Maximum number of files to retrieve (40 max)

string

Continuation cursor

Headers
string
required

Your API key

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json