Rockwell Product Scraper — Specs & Catalog Numbers
Pricing
from $0.05 / 1,000 product scrapeds
Rockwell Product Scraper — Specs & Catalog Numbers
Enrich Allen-Bradley catalog numbers with full Rockwell product data: specifications, lifecycle status, dimensions, literature links, and optional accessories. HTTP API with JSON/CSV export for engineering and procurement teams.
Pricing
from $0.05 / 1,000 product scrapeds
Rating
0.0
(0)
Developer
Andrej Kiva
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
0
Monthly active users
16 hours ago
Last modified
Categories
Share
Crawloop Rockwell Automation Suite — Structured data extraction for Rockwell Automation and Allen-Bradley hardware catalog. Built for procurement teams, system integrators, and BOM engineering workflows.
| Discovery | Enrichment | Documents | PDF parsing |
|---|---|---|---|
| Full Catalog Crawler | Product Scraper ◄── you are here | Document Downloader | Datasheet Parser |
| Lifecycle Tracker |
Disclaimer: This is an unofficial integration developed independently of Rockwell Automation Inc. It is not affiliated with, sponsored by, or endorsed by Rockwell Automation Inc. or any of its subsidiaries.
Rockwell Automation, Allen-Bradley, and related names are trademarks of Rockwell Automation Inc. Product data is read from publicly accessible Rockwell web sources only; no proprietary databases are redistributed.
This Actor is provided for informational and research purposes only (e.g. procurement research, BOM audits, internal engineering workflows). You are solely responsible for ensuring your use complies with applicable laws, Rockwell website terms of use, and your organization's policies.
No warranty is given as to accuracy, completeness, or continued availability of third-party data. Use at your own risk.
Rockwell product scraper / Allen-Bradley API alternative — enrich catalog numbers with full PDP data: technical specifications, lifecycle status, document links, dimensions, and optional accessories. HTTP-only (no browser). Use from Python, Node.js, or MCP.
When to use this Actor
Use the Rockwell Product Scraper when you already have Allen-Bradley catalog numbers and need full product detail JSON — specs, lifecycle, literature links, and related products.
For bulk lifecycle screening only, use Rockwell Lifecycle Tracker first. For PDF downloads, use Rockwell Document Downloader. Chain after Rockwell Full Catalog Crawler to enrich discovered SKUs.
Key Features
- HTTP-only — Direct product-details API; no browser or proxy required for typical runs
- Full specs — Classification features normalized to name/value pairs
- Lifecycle data — Status, replacement URL, and successor catalog number
- Document links — Technical data, manuals, and drawings
- Accessories — Optional related products
- Bulk-friendly — Parallel requests with configurable concurrency
Input Parameters
| Parameter | Description | Default |
|---|---|---|
catalogNumbers | Required. Allen-Bradley catalog numbers to scrape. | — |
includeAccessories | Fetch accessories list. | true |
includeKnowledgeBase | Fetch technote links. | false |
concurrencyLimit | Parallel SKU workers. | 5 |
countryCode | API country code. | us |
Input Example
{"catalogNumbers": ["1756-L81E", "25B-E027N104"],"includeAccessories": true,"concurrencyLimit": 5}
Output Format
{"inputCatalogNumber": "1756-L81E","catalogNumber": "1756-L81E","title": "ControlLogix 5580 Controller","lifecycle": "ACTIVE","brand": "Allen-Bradley","series": "ControlLogix","pdpUrl": "https://www.rockwellautomation.com/en-us/products/details.1756-L81E.html","specifications": [{ "name": "Communication ports", "value": "1 x USB; 1 x SD; Dual Ethernet" }],"status": "ok"}
Use cases
| Use case | What you get |
|---|---|
| BOM enrichment | Specs + lifecycle per catalog number |
| ERP / PLM fill | Structured JSON for catalogs |
| Obsolescence follow-up | Successor URLs after lifecycle screen |
| AI / MCP workflows | Run via Apify API, clients, or MCP |
Integration examples
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('crawloop/rockwell-product-scraper').call({{ catalogNumbers: ['1756-L81E', '25B-E027N104'], includeAccessories: true, concurrencyLimit: 5 }});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items.slice(0, 5));
Python
from apify_client import ApifyClientclient = ApifyClient(token)run = client.actor("crawloop/rockwell-product-scraper").call(run_input={{"catalogNumbers": ["1756-L81E", "25B-E027N104"], "includeAccessories": True, "concurrencyLimit": 5}})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item.get("catalogNumber"), item.get("lifecycle"), item.get("title"))
cURL
curl "https://api.apify.com/v2/acts/crawloop~rockwell-product-scraper/runs?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"catalogNumbers":["1756-L81E","25B-E027N104"],"includeAccessories":true,"concurrencyLimit":5}'
MCP and AI assistants
Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call crawloop/rockwell-product-scraper.
Example prompts:
- "Run Rockwell Product Scraper for 1756-L81E and return catalogNumber, lifecycle, title, specifications"
- "Enrich these Allen-Bradley catalog numbers with specs and document links"
- "Chain Lifecycle Tracker then Rockwell Product Scraper for discontinued parts only"
Suite next step
For literature PDFs, use Rockwell Document Downloader. To parse TD PDFs into JSON specs, use Rockwell Datasheet Parser.
Related Actors — Rockwell Automation
| Focus | Actor |
|---|---|
| Discover Allen-Bradley SKUs | Rockwell Full Catalog Crawler |
| Bulk lifecycle / successors | Rockwell Lifecycle Tracker |
| Full PDP specs & docs links | Rockwell Product Scraper ◄── you are here |
| Download literature PDFs | Rockwell Document Downloader |
| Parse TD PDFs to JSON | Rockwell Datasheet Parser |