HTTP Status & Uptime Checker β Bulk
Pricing
from $0.0005 / url checked
HTTP Status & Uptime Checker β Bulk
Check a batch of URLs for HTTP status, response time and up/down state, with expected-status rules. Cheap recurring availability monitoring without a full SaaS.
Pricing
from $0.0005 / url checked
Rating
0.0
(0)
Developer
hiper soft
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
13 days ago
Last modified
Categories
Share
Check a batch of URLs for HTTP status, response time and up/down state β with expected-status rules. Cheap, recurring availability monitoring for all your endpoints without a full monitoring SaaS. Schedule it and get a report every run.

What it does
- Requests each URL and records status code, response time and up/down.
- Optional expected status (treat only that code as "up").
- Reports content type, server, redirects and the final URL.
Use cases
- Ops / SRE β scheduled availability checks across many endpoints.
- Agencies β monitor client sites in bulk.
- QA β verify a list of URLs returns the expected status.
Input
{ "urls": ["https://apify.com", "https://api.yoursite.com/health"], "method": "GET", "expectedStatus": 0 }
| Field | Type | Description |
|---|---|---|
urls | array | URLs to check. |
method | string | GET or HEAD. |
expectedStatus | integer | Only this exact status counts as up (0 = any 2xx/3xx). |
followRedirects | boolean | Follow redirects. |
timeoutMs | integer | Per-request timeout. |
Output

{ "url": "https://apify.com", "status": 200, "responseMs": 180, "up": true, "finalUrl": "https://apify.com/", "checkedAt": "2026-08-18T00:00:00.000Z" }
Output schema
| Field | Type | Description |
|---|---|---|
url | string (URL) | The URL checked. |
status | integer | HTTP status code. |
responseMs | integer | Response time in ms. |
up | boolean | Whether the URL is up. |
FAQ
Can I get alerts? Schedule it and use a webhook/integration to alert when up is false.
Can I automate it? Yes β via integrations on the Apify platform and the Apify API.
Notes
Original clean-room implementation.