API Page Generator

A lightweight tool to create consistent REST API documentation pages faster. Fill a form, preview the markdown, and generate a ready-to-serve page.

This page explains what each field does and how the generator creates the final file.

TL;DR

Open the generator at: /body/kit_dev_rhyla/new_rote.html


Key concepts

Route Path (visual)

Document Path (where to save)

Example mapping:

Notes:


HTTP method and tags


Request section

Headers

URL Parameters

Body (JSON)

Supported types: string, number, boolean, object, array, null.


Responses

400 Bad Request:
{
  "error": "Validation error",
  "message": "Email is required"
}

404 Not Found:
{
  "error": "Not found",
  "message": "User not found"
}

cURL example


Generating the page

Example result:


Tips and notes


Quick example

Goal: Create “Create User” docs.

  1. Route Information
  1. Request
{
  "name": "John Doe",
  "email": "john@example.com"
}
  1. Responses
  1. cURL (auto-filled)

  2. Click Generate Page → file /api/post-users-new.md is created and served as HTML.


If you need to document non-API pages, simply leave the Body blank, choose an appropriate title, and skip tags/method as needed; the generator still creates a well-structured markdown page.