Streamlit apps
List 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.
get/streamlit-apps
Query parameters
projectIdstring uuid required
Project whose Streamlit apps are listed.
Example:61a8d92e-aa72-4f2e-8dce-cb78e10ecf7c
Project whose Streamlit apps are listed.
Response
List of Streamlit apps in the project
Example response
{
"streamlitApps": [
{
"id": "7a2f0c1e-0f5f-4a67-9a2c-4a0b7bb0f0a1",
"projectId": "61a8d92e-aa72-4f2e-8dce-cb78e10ecf7c",
"entrypoint": "apps/dashboard.py",
"url": "https://deepnote.com/streamlit-apps/7a2f0c1e-0f5f-4a67-9a2c-4a0b7bb0f0a1",
"createdAt": "2026-08-11T09:30:00.000Z"
}
]
}