---
title: "Create a notebook"
method: POST
path: "/notebooks"
tags: ["Notebooks"]
---

# Create a notebook

`POST /notebooks`

Creates an empty notebook inside the project identified by `projectId`.

## Request body

- CreateNotebookBody
  - `projectId` string, uuid, required — Project to create the notebook in.
  - `name` string — Notebook name.

## Response `201`

Notebook created

- CreateNotebookResponse
  - `notebook` Notebook, required
    - `id` string, required — Opaque notebook identifier.
    - `projectId` string, uuid, required
    - `name` string, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time

## Other responses

- `400` — Validation error
- `401` — Unauthorized
- `403` — Insufficient permissions
- `404` — Project not found
- `409` — Project is suspended or duplicate notebook name
- `429` — Rate limit exceeded

---

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