v51

OpenAPI 3.0.0raw.githubusercontent.com2026-08-01267339950.6 KB
WordPress: Plugins

List installed WordPress plugins

List plugins installed on a WordPress installation, including their status, available updates and known vulnerabilities.

Provide the WordPress installation (software) identifier in the path. It can be obtained from GET /api/hosting/v1/wordpress/installations (the id field).

get/api/hosting/v1/accounts/{username}/wordpress/{software}/plugins

Path parameters

usernamestring required
Example:u123456789
softwarestring required
Example:1232456789

WordPress installation (software) identifier

Query parameters

category'cache' nullable
Example:cache

Filter installed plugins by category.

Response

Success response

namestring

Plugin slug

titlestring

Human readable plugin name

versionstring

Installed plugin version

status'active' | 'inactive'

Whether the plugin is active or inactive

updatestring

Available update version, or "none" when up to date

Example response

[
  {
    "name": "akismet",
    "title": "Akismet Anti-Spam",
    "version": "5.3",
    "status": "active",
    "update": "none",
    "vulnerabilities": [
      {
        "title": "Cross-Site Scripting (XSS)",
        "description": "A stored XSS vulnerability affecting older versions.",
        "affected_in": "4.7.0",
        "fixed_in": "4.7.1",
        "direct_url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/example"
      }
    ]
  }
]