curl --request GET \ --url https://onlyautomator.com/api/test
Copy
{ "success": true, "message": "Alive"}
Microservice API
Health Check
Check if the microservice is operational
GET
/
api
/
test
Health Check
Copy
curl --request GET \ --url https://onlyautomator.com/api/test
Copy
{ "success": true, "message": "Alive"}
This endpoint allows you to check if the microservice is operational. It’s useful for health monitoring and status checks.
API Playground Issue? If you encounter issues with the API playground, you can test directly with cURL or Postman:
Copy
# Local developmentcurl http://localhost:3000/api/test# Alternative localcurl http://localhost:3001/api/test# Productioncurl https://onlyautomator.com/api/test