Broken Link Checker - Find Dead 404 Links
Broken Link Checker - Find Dead 404 Links — a Node.js client for the Apify Actor. Pull Broken Link data at scale with no API-key hassle: thousands of clean, structured results you can export to JSON, CSV or Excel.
Run it on Apify: https://apify.com/logiover/broken-link-checker
Install
npm install apify-broken-link-checker
Usage
const scrape = require("apify-broken-link-checker");
(async () => {
const items = await scrape({}, { token: process.env.APIFY_TOKEN });
console.log(items.length, "results");
console.log(items[0]);
})();
Get your free Apify token at https://console.apify.com/account/integrations.
Input
| Field | Type | Description |
|---|---|---|
startUrls |
array | Start URLs |
maxPagesToCrawl |
integer | Max pages to crawl |
checkExternalLinks |
boolean | Check external links |
onlyBroken |
boolean | Only output broken links |
maxConcurrency |
integer | Max concurrency |
All fields optional — run with empty input {} for a broad default result set.
Output
Each result item includes fields such as: sourceUrl, linkUrl, anchorText, linkType, statusCode, ok, error, checkedAt.
Why use this
- Thousands of results per run, auto-paginated
- No Broken Link login or reverse-engineering — just call the Actor
- Export to JSON, CSV, Excel, JSONL, XML
- Runs on Apify cloud — schedule it, add webhooks, wire into Make / Zapier / n8n
FAQ
Do I need an API key?
Only a free Apify token (grab one at https://console.apify.com/account/integrations). No Broken Link login and no scraping setup on your side.
How many results can I get?
Thousands per run. Raise the limit in the input to pull more — the Actor paginates for you.
What export formats are supported?
Results are plain JSON in code; from the Apify dataset you can export CSV, Excel, JSON, JSONL or XML.
Is this an official Broken Link API?
No. It is an unofficial Broken Link data client on the Apify platform — a maintained alternative when there is no official or affordable API.
Links
- Run the Actor: https://apify.com/logiover/broken-link-checker
- Docs & examples: https://github.com/logiover/broken-link-checker
- More scrapers by logiover: https://apify.com/logiover
MIT 2026 logiover · Client library for the hosted Apify Actor. Not affiliated with Broken Link.