URL Health Check avatar

URL Health Check

Pricing

$50.00 / 1,000 url checkeds

Go to Apify Store
URL Health Check

URL Health Check

Checks HTTP status, response time and TLS validity for a list of URLs. Returns one dataset item per URL.

Pricing

$50.00 / 1,000 url checkeds

Rating

0.0

(0)

Developer

Westbrook

Westbrook

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

Checks HTTP status, response time, and reachability for a list of URLs.

Input

{
"urls": ["https://example.com", "https://another-site.com"]
}

Output

One dataset item per URL:

{
"url": "https://example.com",
"ok": true,
"statusCode": 200,
"responseTimeMs": 86,
"checkedAt": "2026-09-05T16:24:03.199Z",
"error": null
}

ok is true when the HTTP status is in the 200-299 range. error is set when the request fails outright (DNS, timeout, connection reset) and statusCode is null in that case.

Use cases

  • Monitor whether a set of URLs (site pages, API endpoints, webhooks) is up and responding.
  • Measure response latency across a list of endpoints in a single run.
  • Quick pre-flight check before running a larger scraping or automation job.