Back to API List
System Status API
Provides the current operational status, version, and timestamp of the application. Ideal for health checks and monitoring.
System
Internal API - Hosted by this App
API Endpoints & Usage
Explore and interact with the available endpoints for the System Status API. These API routes are live! The paths shown below are relative to your application's base URL. For example, if this application is hosted at
https://gen-endpoint.com
, an endpoint path for this API, such as /api/status
, would be accessible at https://gen-endpoint.com/api/status
. You can use the "Try it out" section for each endpoint or use tools like curl
, Postman, or your browser's address bar (for GET requests) to interact with them.GET
/api/status
Returns the current system status, service name, uptime (illustrative), and a timestamp.
Show Static Examples
Example Response:
{
"status": "operational",
"serviceName": "API Endpoint Explorer Backend",
"version": "1.2.3",
"uptimeSeconds": 18345,
"lastChecked": "2024-08-15T11:00:00.000Z"
}
Try it out
You can add or change query parameters in the path above (e.g., ?name=User).