---
title: "List Flavors"
method: GET
path: "/api/v1/plugin-flavors"
tags: ["plugins"]
---

# List Flavors

`GET /api/v1/plugin-flavors`

Returns all event flavors.

Args:
    type: The type of Plugin
    subtype: The subtype of the plugin
    page: Page for pagination (offset +1)
    size: Page size for pagination
    hydrate: Whether to hydrate the response bodies

Returns:
    A page of flavors.

## Query parameters

- `type` 'event_source' | 'action', required — All possible types of Plugins.
- `subtype` 'webhook' | 'pipeline_run', required — All possible types of Plugins.
- `page` integer
- `size` integer
- `hydrate` boolean

## Response `200`

Successful Response

- PageBasePluginFlavorResponse
  - `index` integer, required
  - `max_size` integer, required
  - `total_pages` integer, required
  - `total` integer, required
  - `items` BasePluginFlavorResponse[], required
    - `body` BasePluginResponseBody — Response body for plugins.
    - `metadata` BasePluginResponseMetadata — Response metadata for plugins.
    - `resources` BasePluginResponseResources — Response resources for plugins.
    - `name` string, required
    - `type` 'event_source' | 'action', required — All possible types of Plugins.
    - `subtype` 'webhook' | 'pipeline_run', required — All possible types of Plugins.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/zenml-io/apis/zenml-2.md) · [All operations](https://skmtc.net/zenml-io/apis/zenml-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zenml-io/zenml-2/revisions/febb01b8bce3/schema)
