Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/EduCabrera-k/Menu_Hamburguesas/llms.txt

Use this file to discover all available pages before exploring further.

The Rendón Burgers API exposes a set of JSON endpoints used by the customer-facing menu, the kitchen dashboard, and internal operations. All JSON endpoints accept and return application/json. No authentication is required — the API is designed for use within the restaurant’s internal network.

Base URL

EnvironmentURL
Developmenthttp://localhost:5000
ProductionDepends on your deployment target

Endpoints

MethodPathDescriptionReturns
GET/api/stockGet inventory availabilityJSON object mapping item IDs to booleans
POST/ordenarPlace a new order{ "status": "success", "id": <number> }
GET/estado/{id}Check order status by ID{ "status": string, "detalle": string }
POST/toggle_disponibilidadToggle a menu item’s availability{ "status": "success" }
POST/marcar_listoDispatch an active order to history{ "status": "success" | "error" }
The routes /, /cocina, and /reporte return rendered HTML pages and are not part of the JSON API. They are not documented here.

Request and response format

All POST endpoints expect a request body with Content-Type: application/json. All responses are application/json.

Authentication

No authentication is required. The API is intended for internal restaurant use only and should not be exposed to the public internet in production without additional access controls.

Explore the API

Orders

Place new orders and check their preparation status.

Stock

Read current inventory availability for all menu items.

Kitchen

Toggle item availability and dispatch completed orders.

Build docs developers (and LLMs) love