Skip to content

List installed plugins

GET
/api/v1/plugin-system/plugins
curl --request GET \
--url https://example.com/api/v1/plugin-system/plugins

Refreshes the plugin cache and lists locally installed plugin providers with runtime status and manifest metadata.

Installed plugin providers

Media typeapplication/json
object
items
Array<object>
object
id
string
type
string
name
string
version
string
runtime
string
capabilities
Array<string>
status
string
Allowed values: available disabled error
error
string
manifest
object
Example
{
"items": [
{
"status": "available"
}
]
}

Unauthorized

Internal Server Error