---
title: "List Applications"
method: GET
path: "/applications"
tags: ["Applications"]
---

# List Applications

`GET /applications`

## Query parameters

- `search` string — Search string to find applications
- `ids` string[] — The ID of a application to search for
- `names` string[] — The name of the application
- `owner` string[] — Owner of the application
- `public` boolean — Boolean check for public/private applications
- `deployed` boolean — Filter by deployed applications
- `permissions` string[] — Filter by permission on given resource
- `keywords` string[] — Filter by keywords on given resource
- `sort_by` 'created_at' | 'updated_at' | 'name' — 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

- ApplicationList — 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` Application[], required
    - `name` string, required — The name of the application. Must be unique to a given owner
    - `description` string — A description of the application
    - `public` boolean — Whether or not a application is publicly viewable
    - `keywords` string[] — A list of keywords associated with the application
    - `image` string — An image associated with the application
    - `source` string — A link to the source code of the application
    - `license` string — The license of the application
    - `sdk` 'streamlit' | 'dash' | 'react' — An enumeration.
    - `is_paid` boolean — Whether or not the application is paid
    - `deployment_config` DeploymentConfig
      - `login_required` boolean — Whether the application requires login.
      - `cpu_limit` integer — The maximum number of CPU cores that can be used by the application.
      - `memory_limit` integer — The maximum amount of memory that can be used by the application.
      - `scale_to_zero` boolean — A boolean toggle to scale deployments down to zero replicas when not used.
      - `entrypoint_file` string — The Streamlit python file to use as an entrypoint to the app
    - `id` string, required — The application ID
    - `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` UserPermission, required
      - `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, required — The application name in slug format
    - `has_been_deployed` boolean, required — Whether or not the application has been deployed
    - `url` string — The URL of the application deployment

## Other responses

- `400` — Invalid request
- `403` — Access forbidden
- `422` — Validation Error
- `500` — Server 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)
