---
title: "Get an application"
method: GET
path: "/applications/{owner}/{slug}"
tags: ["Applications"]
---

# Get an application

`GET /applications/{owner}/{slug}`

## Path parameters

- `owner` string, required
- `slug` string, required

## Response `200`

Retrieved

- Application
  - `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
- `404` — Not found
- `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)
