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
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"
}
]
}
]