Website Uptime Checker - Status, Latency, SSL for Any URL avatar

Website Uptime Checker - Status, Latency, SSL for Any URL

Pricing

$10.00 / 1,000 url checkeds

Go to Apify Store
Website Uptime Checker - Status, Latency, SSL for Any URL

Website Uptime Checker - Status, Latency, SSL for Any URL

Check whether a website is up, on demand. Input: urls array (one or many). Output: JSON per URL with up/down result, HTTP status code, latency in ms, and SSL certificate validity. Priced per URL checked - cheap pay-per-result monitoring without a subscription.

Pricing

$10.00 / 1,000 url checkeds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

7 days ago

Last modified

Share

Website Uptime Checker

Know instantly whether a website is up — HTTP status, latency, and SSL validity — for one URL or hundreds.

Live on the Apify Store — run it instantly, or call it as an agent tool via Apify MCP.

What you get

  • Up/down verdict per URL (matches your expected status, or any 2xx/3xx)
  • Response latency in milliseconds
  • Final URL after redirects, plus content length
  • SSL/TLS validity flag for https:// targets
  • Bulk mode — check many URLs in one run; one charge per URL checked
  • Resilient: one bad URL never fails the whole run

Input

{
"url": "https://github.com",
"urls": ["https://google.com", "example.com"],
"expectStatus": 200,
"maxUrls": 50
}

Provide a single url, a list of urls, or both. Scheme is optional (https:// is assumed).

Output

One dataset item per URL:

{
"url": "https://github.com",
"finalUrl": "https://github.com/",
"up": true,
"status": 200,
"expectStatus": 200,
"latencyMs": 312,
"contentLength": 284731,
"tlsValid": true,
"checkedAt": "2026-06-24T12:00:00.000Z"
}