v51

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

List available WordPress plugins

List plugins recommended for installation on a WordPress installation that are not yet installed.

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/available

Path parameters

usernamestring required
Example:u123456789
softwarestring required
Example:1232456789

WordPress installation (software) identifier

Response

Success response

slugstring

Plugin slug used when installing the plugin

titlestring

Human readable plugin name

descriptionstring

Short plugin description

onboarding_description_slugstring nullable

Translation slug for the onboarding description

recommended_description_slugstring nullable

Translation slug for the recommended description

linkstring

Link to the plugin page on WordPress.org

versionstring

Latest available plugin version

required_wordpress_versionstring

Minimum WordPress version required by the plugin

required_php_versionstring

Minimum PHP version required by the plugin

is_plan_upgrade_neededboolean

Whether a hosting plan upgrade is required to use the plugin

Example response

[
  {
    "slug": "akismet",
    "title": "Akismet Anti-Spam",
    "description": "Protect your site from spam.",
    "onboarding_description_slug": "akismet_onboarding_description",
    "recommended_description_slug": "akismet_recommended_description",
    "link": "https://wordpress.org/plugins/akismet/",
    "version": "5.3",
    "required_wordpress_version": "5.8",
    "required_php_version": "7.2"
  }
]