Skip to content

System API

Check Health Status

Check the health and status of the API.

  • Method: GET
  • Path: /v1

Response (200 OK)

json
{
  "message": "Nihao"
}

Example Request (cURL)

bash
curl -X GET https://api.perlica.my.id/v1

Example Request (JavaScript / Fetch)

javascript
async function checkHealth() {
  const response = await fetch("https://api.perlica.my.id/v1");
  const data = await response.json();
  console.log(data);
}

checkHealth();