Get information about analysis

To get detailed information about analysis, wait for the analysis to finish, and then send the GET analyses/<analysis_id:uuid> request. In the request, specify the analysis ID:

curl -X GET https://vxcube.drweb.com/api-2.0/analyses/60e21c98-7c2a-4112-81b5-a577f6cdf4db \

-H "Content-Type: application/json" \

-H "Authorization: api-key aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"

In response, you receive the Analysis object:

{

   "id": 60e21c98-7c2a-4112-81b5-a577f6cdf4db,

   "sample_id": 6784,

   "size": 10881846,

   "sha1": "00a610100a3516f4d0daa33e7de317d2ddb6c2c6",

   "start_date": "2019-02-08T04:08:15.162343+00:00",

   "format_name": "pdf",

   "user_name": "example@drweb.com",

   "tasks": [{

     "rules": {

       "neutral": [

         "Creating a window",

         "Launching a process"

       ]

     },

     "detects": [

         "behavior",

         "files_dumps"

      ]

     "end_date": "2019-02-08T15:51:05.186896+00:00",

     "platform_code": "acrobat_7_64_15",

     "maliciousness": 6,

     "id": 18676,

     "status": "successful",

     "start_date": "2019-02-08T15:32:50.643122+00:00",

     "verdict": "clean1"

   }, {

     "end_date": "2019-02-08T15:50:01.943030+00:00",

     "platform_code": "acrobat_7_32_11",

     "maliciousness": 6,

     "id": 18675,

     "status": "successful",

     "start_date": "2019-02-08T04:08:15.632924+00:00",

     "rules": {

       "neutral": [

         "Creating a window",

         "Creating a file in the %temp% directory"

       ]

     },

     "detects": [

         "behavior",

         "files_dumps"

      ]

     "verdict": "clean1"

   }

 ],

 "sha1": "00a610186a3526f4d0daa28e7de317d2ddb6c2c6"

}