logiover's picture
Publish sample dataset for bulk-url-status-checker
3464568 verified
---
license: cc-by-4.0
pretty_name: "Bulk URL Status Checker – Broken Link & Redirect Audit"
tags: [data_extraction, web-scraping, apify, seo-tools, developer-tools]
size_categories:
- n<1K
---
# Bulk URL Status Checker – Broken Link & Redirect Audit
Bulk URL checker for HTTP status codes (200/301/302/404/410/500) with final URL, redirect chain and response time. Fast parallel link audit for SEO, site migrations, monitoring and QA. Export clean results to CSV/JSON.
## What the actor scrapes
# Bulk URL Status Checker — Broken Link & Redirect Audit Check the HTTP status of thousands of URLs in seconds. Detects broken links (404, 500), traces full redirect chains (301, 302), and measures response times — all in one fast, scalable run. The essential tool for SEO audits, link monitoring, content migrations, and QA pipelines. --- ## What Is This Actor? Every website accumulates broken links, outdated redirects, and slow pages over time. Checking them manually — or even with browser-based
## Who this is for
This sample is useful for anyone working in **data extraction, seo tools, developer tools** who wants a quick look at the shape of the data before running the live actor at scale. Treat it as a static snapshot — counts, prices and timestamps reflect the moment the sample was captured and will drift over time.
## Source
**Live source:** This dataset is a static sample. For fresh, customizable extractions, run the live Apify actor: [logiover/bulk-url-status-checker](https://apify.com/logiover/bulk-url-status-checker)
## Fields
- **`url`** — canonical URL of the item
- **`statusCode`** — field captured by the actor
- **`statusMessage`** — field captured by the actor
- **`isBroken`** — boolean flag
- **`isRedirect`** — boolean flag
- **`redirectChain`** — field captured by the actor
- **`finalUrl`** — URL reference
- **`responseTime`** — timestamp
- **`checkedAt`** — timestamp
## Sample preview
```json
[
{
"url": "https://google.com",
"statusCode": 200,
"statusMessage": "OK",
"isBroken": false,
"isRedirect": true,
"redirectChain": [
"https://www.google.com/"
],
"finalUrl": "https://www.google.com/",
"responseTime": 645,
"checkedAt": "2026-05-15T10:51:06.627Z"
},
{
"url": "https://apify.com/non-existent-page",
"statusCode": 404,
"statusMessage": "Not Found",
"isBroken": true,
"isRedirect": false,
"redirectChain": [],
"finalUrl": "https://apify.com/non-existent-page",
"responseTime": 878,
"checkedAt": "2026-05-15T10:51:06.912Z"
}
]
```
## Snapshot stats
- Row count in this sample: **2**
- Data quality flag at capture time: `THIN`
## License & Attribution
Released under **Creative Commons Attribution 4.0 (CC BY 4.0)**. If you use this data, please credit the source actor and link back to its Apify Store page: [logiover/bulk-url-status-checker](https://apify.com/logiover/bulk-url-status-checker).
The sample is provided as-is for evaluation and research. Source websites retain their own terms of service — downstream users are responsible for complying with them when running the live actor or redistributing scraped content.