Bulk HTTP Status Checker - Status Codes, Redirects, Dead Links avatar

Bulk HTTP Status Checker - Status Codes, Redirects, Dead Links

Pricing

$10.00 / 1,000 url checkeds

Go to Apify Store
Bulk HTTP Status Checker - Status Codes, Redirects, Dead Links

Bulk HTTP Status Checker - Status Codes, Redirects, Dead Links

Check HTTP status codes for a list of URLs in bulk. Input: urls array. Output: JSON per URL with final status code, full redirect chain, and response time. Find dead pages and broken links fast. Priced per URL checked - cheap, predictable pay-per-result.

Pricing

$10.00 / 1,000 url checkeds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Bulk HTTP Status Checker

Check HTTP status codes for a list of URLs in bulk — final status, full redirect chain, and response time. Find dead pages fast.

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

What you get

  • Final status & URL after following the redirect chain (up to 10 hops)
  • Full redirect chain — every hop with its status and Location
  • Category for each URL: ok / redirect / clientError / serverError / dead
  • Response time in milliseconds
  • Accepts a single url or a bulk urls list; bare domains get https:// added automatically

Input

{
"urls": ["https://github.com", "https://httpstat.us/301", "https://httpstat.us/404"],
"maxUrls": 50,
"followRedirects": true
}

Output

One dataset item per URL:

{
"url": "https://httpstat.us/301",
"finalStatus": 200,
"finalUrl": "https://httpstat.us/",
"redirectCount": 1,
"chain": [
{ "url": "https://httpstat.us/301", "status": 301, "location": "https://httpstat.us/" },
{ "url": "https://httpstat.us/", "status": 200 }
],
"category": "redirect",
"ok": true,
"timingMs": 412
}