VOOZH about

URL: https://apify.com/antonio_espresso/website-status-code-crawler

⇱ HTTP Status Codes and URL Checker Β· Apify


πŸ‘ HTTP Status Codes and URL Checker avatar

HTTP Status Codes and URL Checker

Pricing

$1.00 / 1,000 statuscodes

Go to Apify Store

HTTP Status Codes and URL Checker

A HTTP Status Codes Crawler is a tool that scans a website and retrieves HTTP status codes for each page. This helps in diagnosing errors and optimizing technical SEO.

Pricing

$1.00 / 1,000 statuscodes

Rating

0.0

(0)

Developer

πŸ‘ Antonio Blago

Antonio Blago

Maintained by Community

Actor stats

3

Bookmarked

87

Total users

3

Monthly active users

4 months ago

Last modified

Share

Apify HTTPS Status Checker πŸš€

An Apify Actor that crawls websites and retrieves their HTTP status codes to help monitor site availability, detect broken links, and analyze redirects.


πŸ“Œ Features

βœ… Extracts URLs from sitemaps if available.
βœ… Crawls websites when no sitemap is found to collect URLs.
βœ… Retrieves HTTP status codes for each discovered URL.
βœ… Detects broken links (404 errors) and highlights them.
βœ… Provides structured JSON output with status summaries.
βœ… Ideal for SEO audits, website monitoring, and performance analysis.


βš™οΈ Input Parameters

The actor accepts the following input in JSON format:

{
"url":"https://example.com",
"max_urls":10,
"follow_links":true,
"mode":"auto"
}
ParameterTypeDescription
urlStringThe target URL or domain (required)
max_urlsIntegerMaximum number of pages to analyze (default: 5)
follow_linksBooleanWhether to follow links in the crawl (default: false)
modeString"sitemap", "crawl", or "auto" (default: "auto")

πŸ“€ Output Format

The actor returns structured JSON output with two key sections:

1️⃣ URL Details

Each scanned URL along with its status code.

{
"details":[
{"url":"https://example.com","status":200},
{"url":"https://example.com/missing-page","status":404}
]
}

2️⃣ Status Code Summary

Aggregates occurrences of each HTTP status code.

{
"overview":[
{"Status Code":200,"Count":10},
{"Status Code":404,"Count":2}
]
}

πŸš€ How to Run

Option 1: Using Apify Console

  1. Go to the Apify Actor Page.
  2. Click Run and provide the input JSON.
  3. Retrieve results from the Dataset Storage.

Option 2: API Execution (cURL)

Run the actor directly via API:

cat> input.json <<'EOF'
{
"url": "https://example.com",
"max_urls": 10,
"follow_links": true,
"mode": "auto"
}
EOF
curl"https://api.apify.com/v2/acts/YOUR_ACTOR_ID/runs?token=$API_TOKEN"\
-X POST \
-d @input.json \
-H'Content-Type: application/json'

πŸ” Example Use Cases

πŸ’‘ SEO Audits β†’ Identify broken links and redirects.
πŸ’‘ Website Monitoring β†’ Track site uptime & status changes.
πŸ’‘ Data Validation β†’ Ensure external links are working.
πŸ’‘ Content Management β†’ Find outdated or broken content.


πŸ“š Resources


πŸ› οΈ Author & Support

Created by Antonio Blago antonioblago.deπŸ› οΈ
πŸ’¬ Need help? Reach out via Apify Community


You might also like

Http Status Scanner

zerobreak/http-status-scanner

HTTP status scanner that checks URL status codes and redirect chains in bulk. Built for SEO teams and developers who need to catch broken links and verify redirects at scale.

HTTP Status Code Checker

automation-lab/http-status-checker

Check HTTP status codes and redirects in bulk for any list of URLs. Detect 404 errors, 301/302 redirects, redirect chains, and broken links for SEO audits and site maintenance.

πŸ‘ User avatar

Stas Persiianenko

51

HTTP Status Code Checker - Bulk URLs & Redirect Chains

dltik/http-status-checker

Bulk-check HTTP status codes and full redirect chains for any list of URLs. For each URL: final status, every redirect hop (status + Location), response time, content-type and server. Pure HTTP, reads headers only β€” fast and cheap. Great for SEO migrations, link audits and uptime spot-checks.

HTTP Status Code Checker

onescales/simple-http-status-code-checker

Bulk check HTTP status codes (200, 301, 302, 402, 404, 500, and more) and redirect chains for any list of URLs. A must-have lookup tool for SEO audits, site migrations, and broken link detection

1.7K

5.0

πŸ—ΊοΈ Sitemap Scraper & Analyzer

taroyamada/sitemap-analyzer

Extract thousands of URLs from complex nested XML sitemaps to audit website structure, HTTP status codes, and indexability for technical SEO.

Website Status & Uptime Checker (is it down or just me)

dev00/website-status-checker

Instantly ping any URL to check if it is down or up. Returns real-time global availability, HTTP status codes, and server latency metrics in milliseconds.

dev00

3

Bulk URL Status Checker

taroyamada/bulk-url-health-checker

Check large URL lists for HTTP status, redirect chains, response timing, and broken URL findings for QA and SEO operations.

Website Status Checker

techionik9993/website-status-checker

Fast and reliable bulk website status checker. Monitor uptime, detect errors, track response times, and follow redirects for hundreds of URLs. Ideal for SEO audits, API monitoring, and automation workflows with clean structured output.