Jupyter Config API

The Config API from Jupyter — 1 operation(s) for config.

OpenAPI Specification

jupyter-config-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Jupyter Server REST Config API
  description: Minimal OpenAPI 3.1 description of the Jupyter Server REST API for managing notebook contents, sessions, kernels, terminals, checkpoints, and configuration.
  version: 1.0.0
servers:
- url: http://localhost:8888
  description: Local Jupyter Server
tags:
- name: Config
paths:
  /api/config/{section_name}:
    parameters:
    - name: section_name
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get configuration section
      operationId: getConfigSection
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Config
    patch:
      summary: Update configuration section
      operationId: updateConfigSection
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: OK
      tags:
      - Config
x-generated-from: https://jupyter-notebook.readthedocs.io/en/stable/rest_api.html
x-generated-by: claude-crawl-2026-05-08