Skip to main content
GET
/
projects
/
{projectName}
/
packages
/
{packageName}
/
notebooks
/
{path}
{
  "resource": "<string>",
  "packageName": "<string>",
  "path": "<string>",
  "malloyVersion": "<string>",
  "notebookCells": [
    {
      "type": "markdown",
      "text": "<string>",
      "result": "<string>",
      "newSources": [
        "<string>"
      ]
    }
  ]
}

Path Parameters

projectName
string
required

Name of the project

packageName
string
required

Name of the package

path
string
required

Path to notebook within the package.

Query Parameters

versionId
string

Version identifier for the package

Response

A Malloy notebook.

Compiled Malloy notebook with cells, results, and execution data

resource
string

Resource path to the notebook

packageName
string

Name of the package containing this notebook

path
string

Relative path to the notebook file within its package directory

malloyVersion
string

Version of the Malloy compiler used to generate the notebook data

notebookCells
object[]

Array of notebook cells containing code, markdown, and execution results

I