v52

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-03269339953.6 KB
WordPress: Themes

List installed WordPress themes

List themes 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}/themes

Path parameters

usernamestring required
Example:u123456789
softwarestring required
Example:1232456789

WordPress installation (software) identifier

Response

Success response

namestring

Theme slug

titlestring

Human readable theme name

versionstring

Installed theme version

status'active' | 'inactive'

Whether the theme is active or inactive

updatestring

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

Example response

[
  {
    "name": "twentytwentyone",
    "title": "Twenty Twenty-One",
    "version": "2.2",
    "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"
      }
    ]
  }
]