tasks

Use the endpoint to manage analysis tasks and report data.

GET tasks/<task_id:number>

Description

Parameters

Result

Get data about the task.

Task object.

GET tasks/<task_id:number>/archive

Description

Parameters

Result

Download archive with analysis results.

Archive with analysis results.

GET tasks/<task_id:number>/sample

Description

Parameters

Result

Download sample.

Sample

GET tasks/<task_id:number>/cureit

Description

Parameters

Result

Get data about CureIt!.

CureIt object.

GET tasks/<task_id:number>/cureit.exe

Description

Parameters

Result

Download the CureIt! utility.

Cureit! file.

GET tasks/<task_id:number>/report

Description

Parameters

Result

Download one-page HTML report.

One-page HTML report.

GET tasks/<task_id:number>/graph

Description

Parameters

Result

Download SVG graph.

SVG graph.

GET tasks/<task_id:number>/dumps

Description

Result

Get data from the Dumps table.

{

  "total_count": <number>,

  "items": <list of Dump objects>

}

Parameters

Parameter

Type

Description

Required

count

number

Number of returning objects, 1…100. To get more objects, use several requests and the offset parameter. By default, count=10.

No

offset

number

Offset: 0…+∞. By default, offset=0.

No

search

string

Pattern for string searching.

No

GET tasks/<task_id:number>/drops

Description

Result

Get data from the Created files table.

{

  "total_count": <number>,

  "items": <list of Drop objects>

}

Parameters

Parameter

Type

Description

Required

count

number

Number of returning objects, 1…100. To get more objects, use several requests and the offset parameter. By default, count=10.

No

offset

number

Offset: 0…+∞. By default, offset=0.

No

search

string

Pattern for string searching.

No

GET tasks/<task_id:number>/networks

Description

Result

Get data from the Network activity map table.

{

  "total_count": <number>,

  "items": <list of Connection objects>

}

Parameters

Parameter

Type

Description

Required

count

number

Number of returning objects, 1…100. To get more objects, use several requests and the offset parameter. By default, count=10.

No

offset

number

Offset: 0…+∞. By default, offset=0.

No

GET tasks/<task_id:number>/api_log

Description

Result

Get data from the API log table.

{

  "total_count": <number>,

  "items": <list of ApiEvent objects>

}

Parameters

Parameter

Type

Description

Required

count

number

Number of returning objects, 1…100. To get more objects, use several requests and the offset parameter. By default, count=10.

No

offset

number

Offset: 0…+∞. By default, offset=0.

No

search

string

Pattern for string searching.

No

GET tasks/<task_id:number>/intents

Description

Result

Get data from the Intents table. The endpoint is used for tasks started on Android.

{

  "total_count": <number>,

  "items": <list of Intent objects>

}

Parameters

Parameter

Type

Description

Required

count

number

Number of returning objects, 1…100. To get more objects, use several requests and the offset parameter. By default, count=10.

No

offset

number

Offset: 0…+∞. By default, offset=0.

No

search

string

Pattern for string searching.

No

GET tasks/<task_id:number>/phone_actions

Description

Result

Get data from the Phone calls and SMS table. The endpoint is used for tasks started on Android.

{

  "total_count": <number>,

  "items": <list of Call and Message objects>

}

Parameters

Parameter

Type

Description

Required

count

number

Number of returning objects, 1…100. To get more objects, use several requests and the offset parameter. By default, count=10.

No

offset

number

Offset: 0…+∞. By default, offset=0.

No

search

string

Pattern for string searching.

No

GET tasks/<task_id:number>/archive_storage

Description

Parameters

Result

Get a list of files and directories in the archive, or download a file or a directory from the archive.

path (string)—path, optional

If path is not specified:

{

  "folders": <list of folders in the archive>,

  "files": <list of files in the archive>

}

If path is specified, file or archive of the folder

POST tasks/<task_id:number>/restart

Description

Parameters

Result

Restart the deleted or failed task.

Restart of the deleted or failed task.

PUT tasks/<task_id:number>/cureit

Description

Parameters

Result

Recreate the CureIt! utility.

CureIt object.