---
title: "Get a specific plugin"
method: GET
path: "/api/plugins/{name}"
tags: ["Plugins"]
---

# Get a specific plugin

`GET /api/plugins/{name}`

Returns the configuration for a specific plugin.
The response includes the plugin status with types array showing which interfaces
the plugin implements (llm, mcp, http). The `actualName` field shows the plugin name
from GetName() (used as the map key), which may differ from the display name (`name`).

## Path parameters

- `name` string, required

## Response `200`

Successful response

- Plugin — Plugin configuration
  - `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

## Other responses

- `400` — Bad request
- `404` — Plugin not found
- `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)
