v1

latestOpenAPI 3.0.02026-07-14198572488.4 KB
Themes

List installed Wordpress themes on account

Get list of Wordpress themes currently installed on given site.

get/v1/sites/{id}/themes

Path parameters

idinteger required

ID of the Site you are interacting with

Example:8880000888

Query parameters

searchstring

Search theme name/title/description

Example:Twenty Twenty
pageinteger

Page of results to include (default = 1)

per_pageinteger

Number of results per page

Example:10
sort'description' | 'name' | 'status' | 'title' | 'update' | 'version'

sort results by this property

direction'asc' | 'desc' | 'ASC' | 'DESC'

Direction to sort results in (asc = ascending, desc = descending)

Response

OK

successboolean

whether the request succeeded

errorsstring[]
messagesstring[] nullable

Example response

{
  "success": true,
  "errors": [],
  "messages": [],
  "metadata": {
    "page": 1,
    "page_size": 10,
    "total": 150
  },
  "result": [
    {
      "name": "twentytwentyfour",
      "update": "none",
      "update_version": "1.3",
      "version": "1.2",
      "title": "Twenty Twenty-One",
      "description": "Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog."
    }
  ]
}