v51

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

List suggested WordPress plugins

List curated plugin suggestions grouped by website type.

Use the returned slug values with POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/install.

get/api/hosting/v1/wordpress/plugins/suggested

Query parameters

order_idinteger nullable
Example:123456

Optionally scope suggestions to a specific order.

Response

Success response

website_type'business' | 'online-store' | 'blog' | 'portfolio' | 'affiliate-marketing' | 'other' | 'default'

Website type the suggested plugins are grouped by

Example response

[
  {
    "website_type": "blog",
    "plugins": [
      {
        "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",
        "is_preselected": true
      }
    ]
  }
]