GET
/
health
Health check
curl --request GET \
  --url https://api.vidnavigator.com/v1/health
{
  "status": "success",
  "message": "<string>",
  "version": "<string>",
  "endpoints": [
    {
      "path": "<string>",
      "method": "<string>",
      "description": "<string>",
      "auth_required": true
    }
  ]
}
Check API health status and get available endpoint information.

Example Request

cURL
curl "https://api.vidnavigator.com/v1/health"

Success Response

{
  "status": "success",
  "message": "API is healthy",
  "version": "1.0.0"
}

Response

200 - application/json

API is healthy

The response is of type object.