---
title: "List all Plugins"
method: GET
path: "/{workspace}/plugins"
tags: ["Plugins"]
---

# List all Plugins

`GET /{workspace}/plugins`

List all Plugins

## Path parameters

- `workspace` string, required

## Query parameters

- `size` integer
- `offset` string
- `tags` string

## Response `200`

A successful response listing Plugins

- object
  - `data` Plugin[]
    - `condition` string, nullable — An expression used for conditional control over plugin execution. If the expression evaluates to `true` during the request flow, the plugin is executed; otherwise, it is skipped.
    - `config` object, nullable — The configuration properties for the Plugin which can be found on the plugins documentation page in the [Kong Hub](https://docs.konghq.com/hub/).
    - `consumer` object, nullable — If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
      - `id` string
    - `consumer_group` object, nullable — If set, the plugin will activate only for requests where the specified group has been authenticated
      - `id` string
    - `created_at` integer, nullable — Unix epoch when the resource was created.
    - `enabled` boolean, nullable — Whether the plugin is applied.
    - `id` string, nullable — A string representing a UUID (universally unique identifier).
    - `instance_name` string, nullable — A unique string representing a UTF-8 encoded name.
    - `name` string, required — The name of the Plugin that's going to be added. Currently, the Plugin must be installed in every Kong instance separately.
    - `ordering` object, nullable
      - `after` object
        - `access` string[]
      - `before` object
        - `access` string[]
    - `partials` object[], nullable — A list of partials to be used by the plugin.
      - `id` string — A string representing a UUID (universally unique identifier).
      - `name` string — A unique string representing a UTF-8 encoded name.
      - `path` string
    - `protocols` string[], nullable — A list of the request protocols that will trigger this plugin. The default value, as well as the possible values allowed on this field, may change depending on the plugin type. For example, plugins that only work in stream mode will only support `"tcp"` and `"tls"`.
    - `route` object, nullable — If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the Route being used.
      - `id` string
    - `service` object, nullable — If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
      - `id` string
    - `tags` string[], nullable — An optional set of strings associated with the Plugin for grouping and filtering.
    - `updated_at` integer, nullable — Unix epoch when the resource was last updated.
  - `next` string — URI to the next page (may be null)
  - `offset` string — Offset is used to paginate through the API. Provide this value to the next list operation to fetch the next page

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/kong/apis/kong-enterprise-admin-api.md) · [All operations](https://skmtc.net/kong/apis/kong-enterprise-admin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kong/kong-enterprise-admin-api/revisions/28b1f8a59cdc/schema)
