Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/PDNMX/s1_backend/llms.txt

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

The root endpoint acts as a health check and version probe for the S1 Backend gateway. Sending a GET request to / confirms the service is live and returns the API’s human-readable title alongside its version string. No authentication, request body, or query parameters are required.

Endpoint

GET /

Request

No authentication, query parameters, or request body are needed.
curl http://localhost:3101/

Response

Returns HTTP 200 OK with a JSON object containing the API title and version.
Example Response
{
  "title": "API del Sistema 1",
  "version": "1.0"
}
title
string
Human-readable name of the API. Always "API del Sistema 1".
version
string
Current version of the API. Currently "1.0".
This endpoint is intended as a lightweight liveness probe. If you receive a 200 OK response with the expected JSON body, the gateway is running and ready to serve requests.

Build docs developers (and LLMs) love