{ "opencollection": "1.0.0", "info": { "name": "VirusTotal API v3 - Access Control Access Control - Group Management IoC Investigation - Zipping files API", "version": "3.0" }, "request": { "auth": { "type": "apikey", "key": "x-apikey", "value": "{{x-apikey}}", "placement": "header" } }, "items": [ { "info": { "name": "IoC Investigation - Zipping files", "type": "folder" }, "items": [ { "info": { "name": "VirusTotal Create a Password-protected ZIP with Google Threat Intelligence Files", "type": "http" }, "http": { "method": "POST", "url": "https://www.virustotal.com/api/v3/intelligence/zip_files", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-apikey", "value": "{{x-apikey}}", "placement": "header" } }, "docs": "Creates a ZIP file containing the files specified in the request. Optionally you can provide a password for protecting the ZIP file. The request's body must have the following structure:\n\n```json Example request\n{\n \"data\": {\n \"password\": \"mysecretpassword\", \n \"hashes\":[\n \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \n \"275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f\",\n \"ed1707bf39a62b0efd40e76f55409ee99db0289dc5027d0a5e5337b4e7a61ccc\"]" }, { "info": { "name": "VirusTotal Check a ZIP File’s Status", "type": "http" }, "http": { "method": "GET", "url": "https://www.virustotal.com/api/v3/intelligence/zip_files/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ZIP file identifier" } ], "auth": { "type": "apikey", "key": "x-apikey", "value": "{{x-apikey}}", "placement": "header" } }, "docs": "This endpoint returns information about a ZIP file.\n\n```json Example response\n{\n \"data\": {\n \"type\": \"zip_file\",\n \"id\": \"4939392292\",\n \"attributes\": {\n \"status\": \"creating\",\n \"progress\": 45,\n \"files_ok\": 3,\n \"files_error\": 0\n } \n }\n}\n```\n\nThe `status` attribute contains one of the following statuses:\n\n- `starting`\n- `creating`\n- `finished`\n- `timeout`\n- `error-starting`\n- `error-creating`\n\nWhen the status is `finished` you may proceed to download the file.\n" }, { "info": { "name": "VirusTotal Download a ZIP File", "type": "http" }, "http": { "method": "GET", "url": "https://www.virustotal.com/api/v3/intelligence/zip_files/:id/download", "params": [ { "name": "id", "value": "", "type": "path", "description": "ZIP file identifier" } ], "auth": { "type": "apikey", "key": "x-apikey", "value": "{{x-apikey}}", "placement": "header" } }, "docs": "This endpoint is similar to [GET /zip_files/{id}/download_url](https://gtidocs.virustotal.com/reference/zip-files-download-url), but it redirects you to the download URL. The download URL you are redirected to can be reused as many times as you want for a period of 1 hour. After that period the URL expires and can't be used anymore.\n" }, { "info": { "name": "VirusTotal Get a ZIP File’s Download URL", "type": "http" }, "http": { "method": "GET", "url": "https://www.virustotal.com/api/v3/intelligence/zip_files/:id/download_url", "params": [ { "name": "id", "value": "", "type": "path", "description": "ZIP file identifier" } ], "auth": { "type": "apikey", "key": "x-apikey", "value": "{{x-apikey}}", "placement": "header" } }, "docs": "This endpoint returns a signed URL from where you can download the specified ZIP file. The URL expires after 1 hour.\n" } ] } ], "bundled": true }