Skip to content

HTTP Status Checker

Heavstal Status Monitor performs a real-time health check on any URL. It measures the response time (latency), captures the HTTP status code, and identifies the server technology if available.

POST /http-status

FieldTypeRequiredDescription
urlstringYesThe URL to inspect.
const res = await fetch('https://heavstal.com.ng/api/v1/http-status', {
method: 'POST',
headers: { 'x-api-key': 'YOUR_KEY' },
body: JSON.stringify({ url: 'https://github.com' })
});
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"url": "https://github.com",
"status": "UP",
"code": 200,
"latency": "145ms",
"ip": "140.82.121.3"
}
}