Jupyter Status API

The Status API from Jupyter — 1 operation(s) for status.

OpenAPI Specification

jupyter-status-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Jupyter Server REST Config Status 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: Status
paths:
  /api/status:
    get:
      summary: Get server status
      operationId: getServerStatus
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
      tags:
      - Status
x-generated-from: https://jupyter-notebook.readthedocs.io/en/stable/rest_api.html
x-generated-by: claude-crawl-2026-05-08