---
title: "List Streamlit apps"
method: GET
path: "/streamlit-apps"
tags: ["Streamlit apps"]
---

# List Streamlit apps

`GET /streamlit-apps`

Lists the Streamlit apps a project serves, oldest first. The response is complete: a project serves at most one app per free port, so there is no pagination. Use this to find the app for a file before creating one, because `POST /streamlit-apps` rejects a file that is already served.

## Query parameters

- `projectId` string, uuid, required — Project whose Streamlit apps are listed.

## Response `200`

List of Streamlit apps in the project

- ListStreamlitAppsResponse
  - `streamlitApps` StreamlitApp[], required
    - `id` string, uuid, required
    - `projectId` string, uuid, required
    - `entrypoint` string, required — Normalized project-relative path of the served file.
    - `url` string, uri, required — Address the app is served on.
    - `createdAt` string, date-time, required

## Other responses

- `400` — Validation error
- `401` — Unauthorized
- `403` — Insufficient permissions
- `404` — Project not found
- `409` — Project is suspended
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.dev/deepnote/apis/deepnote-public-api.md) · [All operations](https://skmtc.dev/deepnote/apis/deepnote-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/deepnote/deepnote-public-api/revisions/20c4153a90e7/schema)
