v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List installed packages

Returns a list of all the installed packages

get/endpoint-protection/installed-packages

Query parameters

pageinteger

Pagination parameter, starts at 0.

per_pageinteger

Amount of items returned

filter_ecosystem'npm' | 'cargo' | 'pypi' | 'packagist' | 'golang' | 'maven' | 'nuget' | 'ruby' | 'open_vsx' | 'github_act' | 'vscode' | 'chrome' | 'wordpress' | 'skills_sh'

The ecosystem of the installed packages

filter_deviceinteger

The ID of the device to filter the installed packages by

Response

A list of installed packages

package_namestring

The name of the package

ecosystemstring

The ecosystem of the package

Example response

[
  {
    "package_name": "lodash@1.0.0",
    "ecosystem": "npm",
    "devices": [
      {
        "id": 1,
        "name": "Yuri's MacBook Pro",
        "installed_at": 1783131600
      },
      {
        "id": 2,
        "name": "Sugman's MacBook Pro",
        "installed_at": 1783400827
      }
    ]
  }
]