latestOpenAPI 3.1.02026-08-204489152.5 KB

726970fd2992

Streamlit apps

Create a Streamlit app

Serves an existing project file as a Streamlit app.

post/streamlit-apps

Request body

projectIdstring uuid required

Project that contains the entrypoint file.

entrypointstring required

Project-relative path of an existing file to serve, for example "apps/dashboard.py".

Example request

{
  "projectId": "61a8d92e-aa72-4f2e-8dce-cb78e10ecf7c",
  "entrypoint": "apps/dashboard.py"
}

Response

Streamlit app created

Example response

{
  "streamlitApp": {
    "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"
  }
}