---
title: "List all plugins"
method: GET
path: "/api/plugins"
tags: ["Plugins"]
---

# List all plugins

`GET /api/plugins`

Returns a list of all plugins with their configurations and status.
The `actualName` field contains the plugin name from `GetName()` (used as the map key),
while `name` contains the display name from the configuration.
The `types` array in the status shows which interfaces the plugin implements (llm, mcp, http).

## Response `200`

Successful response

- ListPluginsResponse — List plugins response
  - `plugins` Plugin[]
    - `id` integer — Plugin ID (auto-generated)
    - `name` string — Display name of the plugin (from config)
    - `actualName` string — Actual plugin name from GetName() (used as map key in plugin status). Only populated for active plugins.
    - `enabled` boolean
    - `config` object
    - `isCustom` boolean
    - `path` string
    - `status` object — Current plugin status including types array (only populated for active plugins)
      - `name` string — Display name of the plugin
      - `status` 'active' | 'error' | 'disabled' | 'loading' | 'uninitialized' | 'unloaded' | 'loaded'
      - `logs` string[]
      - `types` string[] — Plugin types indicating which interfaces the plugin implements
    - `created_at` string, date-time
    - `version` integer
    - `updated_at` string, date-time
    - `config_hash` string
  - `count` integer

## Other responses

- `500` — Internal server error

---

[API](https://skmtc.net/getbifrost/apis/bifrost-api.md) · [All operations](https://skmtc.net/getbifrost/apis/bifrost-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getbifrost/bifrost-api/revisions/f8cab88f64ea/schema)
