Health API Endpoint - Free Public API

  • Endpoint URL:
    https://aisenseapi.com/services/v1/health


    Description:

    This endpoint is designed to provide a health check for the API or server. It returns a simple status message and a high-precision timestamp in ISO 8601 format to confirm that the system is operational. The timestamp is provided as a microsecond precision float, making it useful for tracking system response times or monitoring server health.


    Response Format:

    Content-Type: application/json

    Example Success Response:

    {
     "status": "ok",
     "microtimestamp": 1738008624.064328
    }

    Fields in Response:

    1. status:

      • Indicates the health of the server.
      • Value: "ok" if the server is functioning correctly.
    2. microtimestamp:

      • A float representing the current Unix timestamp with microsecond precision.
      • Example: 1738008624.064328 (equivalent to 2025-01-27 22:57:04.064328 in UTC).

     

Scroll to Top