Rockwell Full Catalog Crawler — Allen-Bradley SKUs avatar

Rockwell Full Catalog Crawler — Allen-Bradley SKUs

Pricing

from $2.00 / 1,000 discovered skus

Go to Apify Store
Rockwell Full Catalog Crawler — Allen-Bradley SKUs

Rockwell Full Catalog Crawler — Allen-Bradley SKUs

Discover Allen-Bradley catalog numbers from Rockwell family pages and the product-details API. Export deduplicated SKUs with breadcrumbs, lifecycle hints, and document counts. HTTP-only discovery for procurement and BOM workflows.

Pricing

from $2.00 / 1,000 discovered skus

Rating

0.0

(0)

Developer

Andrej Kiva

Andrej Kiva

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

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.

DiscoveryEnrichmentDocumentsPDF parsing
Full Catalog Crawler ◄── you are hereProduct ScraperDocument DownloaderDatasheet 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 catalog crawler — discover Allen-Bradley hardware catalog numbers by walking family pages and paginating the product-details API. Build SKU inventories for procurement databases, then enrich with Lifecycle Tracker / Product Scraper. HTTP-only; use from Python, Node.js, or MCP.

When to use this Actor

Use the Rockwell Full Catalog Crawler when you need to discover Allen-Bradley catalog numbers across family / PIM categories (large unique SKU sets after deduplication).

For full PDP specifications on a known list, use Rockwell Product Scraper. For bulk lifecycle screening only, use Rockwell Lifecycle Tracker.

Key Features

  • Family / PIM discovery — Enumerate categories and paginate product lists
  • Live API rows — Catalog numbers fetched from product-details servlet
  • Deduped output — Optional deduplication of discovered SKUs
  • Lifecycle hints — Brand, series, document counts when present
  • HTTP-only — No browser required

Input Parameters

ParameterDescriptionDefault
discoveryModeDiscovery strategy (e.g. full_sitemap, pim_ids).full_sitemap
pimCategoryIdsOptional PIM category IDs for targeted discovery.
maxFamilyPagesMax family pages (0 = until exhausted in some modes).3
deduplicateOutputDeduplicate catalog numbers in output.true

Input Example

{
"discoveryMode": "pim_ids",
"pimCategoryIds": ["PIM_vfd/25b-powerflex-525,PIM_PF525"],
"maxFamilyPages": 0,
"deduplicateOutput": true
}

Output Format

{
"catalogNumber": "25B-E027N104",
"title": "PowerFlex 525 AC Drive",
"lifecycle": "ACTIVE",
"brand": "Allen-Bradley",
"series": "PowerFlex 525",
"documentCount": 12,
"categoryPath": "Drives / PowerFlex 525",
"source": "pim",
"pdpUrl": "https://www.rockwellautomation.com/en-us/products/details.25B-E027N104.html"
}

Use cases

Use caseWhat you get
Catalog inventoryDeduped Allen-Bradley SKU lists
Family harvestTargeted PIM / family discovery
Downstream enrichmentInput list for Lifecycle / Product scrapers
AI / MCP workflowsRun 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-full-catalog-crawler').call({{ discoveryMode: 'pim_ids', pimCategoryIds: ['PIM_vfd/25b-powerflex-525,PIM_PF525'], maxFamilyPages: 0, deduplicateOutput: true }});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items.slice(0, 5));

Python

from apify_client import ApifyClient
client = ApifyClient(token)
run = client.actor("crawloop/rockwell-full-catalog-crawler").call(
run_input={{"discoveryMode": "pim_ids", "pimCategoryIds": ["PIM_vfd/25b-powerflex-525,PIM_PF525"], "maxFamilyPages": 0, "deduplicateOutput": True}}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item.get("catalogNumber"), item.get("title"), item.get("lifecycle"))

cURL

curl "https://api.apify.com/v2/acts/crawloop~rockwell-full-catalog-crawler/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"discoveryMode":"pim_ids","pimCategoryIds":["PIM_vfd/25b-powerflex-525,PIM_PF525"],"maxFamilyPages":0,"deduplicateOutput":true}'

MCP and AI assistants

Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call crawloop/rockwell-full-catalog-crawler.

Example prompts:

  • "Run Rockwell Full Catalog Crawler for PowerFlex 525 PIM ids and return catalogNumber, title, lifecycle"
  • "Discover Allen-Bradley SKUs for a product family and summarize counts by lifecycle"
  • "Chain Full Catalog Crawler then Rockwell Lifecycle Tracker for obsolescence screening"

Suite next step

Screen discovered SKUs with Rockwell Lifecycle Tracker, then enrich with Rockwell Product Scraper.

FocusActor
Discover Allen-Bradley SKUsRockwell Full Catalog Crawler ◄── you are here
Bulk lifecycle / successorsRockwell Lifecycle Tracker
Full PDP specs & docs linksRockwell Product Scraper
Download literature PDFsRockwell Document Downloader
Parse TD PDFs to JSONRockwell Datasheet Parser