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

# List plugins

`GET /plugins`

## Query parameters

- `search` string[] — You know, for search
- `name` string[] — The account name
- `owner` string[] — Owner of the project
- `public` boolean — Boolean check for public/private projects
- `keyword` string[] — A keyword to index the repository by
- `permission` string[] — Filter by permission on given resource
- `sort_by` 'created_at' | 'updated_at' | 'name' | 'latest_tag' — An enumeration.
- `sort_order` 'ascending' | 'descending' — An enumeration.
- `page` integer — Page number starting from 1
- `per-page` integer — Number of items per page

## Response `200`

Retrieved

- RepositoryList — A list response from a pagination request
  - `page` integer, required — The current page the pagination request is on
  - `per_page` integer, required — The number of pages per pagination request
  - `next_page` integer — The next page, if this on is not the last
  - `page_count` integer, required — The total number of pages
  - `total_count` integer, required — The total number of resources matching the list request
  - `resources` Repository[], required
    - `public` boolean — Whether or not a repository is publicly viewable
    - `keywords` string[] — A list of keywords to index the repository by
    - `description` string — A description of the repository
    - `icon` string — An icon to represent this repository
    - `name` string, required — The name of the repository
    - `id` string, required — The recipe unique ID
    - `latest_tag` string, required — The latest package version to be indexed
    - `owner` AccountPublic, required
      - `id` string, required
      - `account_type` string, required
      - `name` string, required
      - `display_name` string
      - `description` string
      - `picture_url` string — https://robohash.org/ladybugbot
    - `permissions` RepositoryUserPermissions
      - `admin` boolean — The user has admin permission to this resource
      - `write` boolean — The user has write permission on this resource
      - `read` boolean — The user has read permission on this resource
    - `slug` string — The repository slug

## Other responses

- `422` — Validation Error

---

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