v1
latestOpenAPI 3.0.02026-07-14198572488.4 KBPlugins
List installed WordPress plugins on account
Get list of WordPress plugins currently installed on given site.
get/v1/sites/{id}/plugins
Path parameters
idinteger required
ID of the Site you are interacting with
Example:8880000888
Query parameters
searchstring
Search plugin name/title
Example:All-in-One
pageinteger
Page of results to include (default = 1)
per_pageinteger
Number of results per page
Example:10
sort'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
Example response
{
"success": true,
"errors": [],
"messages": [],
"metadata": {
"page": 1,
"page_size": 10,
"total": 150
},
"result": [
{
"name": "akismet",
"update": "none",
"update_version": "5.3.4",
"version": "5.3.3",
"title": "Akismet Anti-spam: Spam Protection"
}
]
}