Radwell Scraper — Surplus Automation Parts Prices & Stock
Pricing
from $2.00 / 1,000 scraped radwell listings
Radwell Scraper — Surplus Automation Parts Prices & Stock
Scrape Radwell industrial automation surplus for MRO and procurement teams: part numbers, surplus and repair prices, condition tiers, stock signals, and specs. Brand crawl, search, or catalog-number lookup — Radwell API alternative with JSON export.
Pricing
from $2.00 / 1,000 scraped radwell listings
Rating
0.0
(0)
Developer
Andrej Kiva
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
10 hours ago
Last modified
Categories
Share
Industrial automation aftermarket data — surplus, refurbished, and repair pricing next to OEM catalog enrichment for Allen-Bradley and multi-brand plant-floor parts.
| OEM specs | OEM lifecycle | Aftermarket prices |
|---|---|---|
| Rockwell Product Scraper | Rockwell Lifecycle Tracker | Radwell Scraper ◄── you are here |
Disclaimer: Unofficial Actor for publicly accessible Radwell catalog pages. Radwell, Allen-Bradley, and related names are trademarks of their respective owners. Not affiliated with, sponsored by, or endorsed by Radwell International or Rockwell Automation. Provided for informational and research purposes only. You are responsible for complying with applicable laws and website terms of use.
Radwell scraper / Radwell API alternative for MRO procurement, system integrators, and surplus dealers. Scrape industrial automation part numbers, surplus prices, repair quotes, condition tiers, in-stock flags, and optional PDP specs into clean JSON for Python, Node.js, cURL, and MCP / AI assistants.
When to use this Actor
- Look up surplus / certified / repair prices for known catalog numbers (PLC, drive, HMI, contactor)
- Crawl a brand or search page for in-stock surplus cards at scale
- Chain after Rockwell Lifecycle Tracker when a part is obsolete or hard to source from OEM channels
When not to use: authorized-distributor list pricing — use DigiKey Product Scraper or Mouser Product Scraper. OEM technical enrichment only — use Rockwell Product Scraper.
Key Features
- Part-number lookup — batch catalog numbers via Radwell search
- Brand & keyword crawl — paginated listing cards with surplus and repair prices
- Listings or details — fast card mode, or Buy-page enrichment for condition offers
- PDP condition tiers — Original Packaging, Radwell Packaging, Certified, plus repair when present
- Stock signals — in-stock flags on cards; regional quantities on detail pages when published
- Camoufox + US residential — hardened path for DataDome / Cloudflare
Input Parameters
| Parameter | Description | Default |
|---|---|---|
startUrls | Brand, Search, or Buy URLs | — |
partNumbers | Catalog numbers to search | — |
brands | Brand page names (e.g. ALLEN BRADLEY) | — |
searchKeywords | Free-text catalog search | — |
runMode | listings (cards) or details (PDP) | details |
maxItems | Cap on products (0 = unlimited) | 50 |
maxPagesPerUrl | Pagination depth per seed | 3 |
proxyConfiguration | Apify Residential US recommended | RESIDENTIAL / US |
Input Example
{"startUrls": [{ "url": "https://www.radwell.com/Brand/Allen%20Bradley/?ignoreredirect=true" }],"runMode": "listings","maxItems": 100,"maxPagesPerUrl": 3,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US"}}
Output Format
| Field | Description |
|---|---|
partNumber | Catalog / part number |
brand / manufacturer | Brand labels |
surplusPrice | Buy surplus as-low-as (listings) or primary surplus offer |
repairPrice | Repair-yours price when offered |
conditions | Detail-mode offers (condition, SKU, price breaks, stock) |
inStock | Stock flag from listing or PDP |
stockByRegion | Qty by region when published on detail pages |
specifications | Spec table key/values (details) |
url | Product / Buy URL |
{"partNumber": "1336F-BRF50-AN-EN-L6","brand": "ALLEN BRADLEY","surplusPrice": 2373.5,"repairPrice": 1522.5,"inStock": true,"currency": "USD","url": "https://www.radwell.com/Buy/ALLEN%20BRADLEY/ALLEN%20BRADLEY/1336F-BRF50-AN-EN-L6","recordType": "listing"}
Use Cases
| Use case | What you get |
|---|---|
| Obsolescence sourcing | Surplus stock + price after OEM discontinued / lifecycle flags |
| BOM cost comps | Aftermarket vs repair vs packaging-tier prices |
| MRO price monitoring | Track surplus as-low-as over time by part number |
| Dealer / inventory intel | Brand inventory slices with in-stock filter |
Integration examples
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('crawloop/radwell-scraper').call({partNumbers: ['1747-L524', '1756-L81E'],runMode: 'details',maxItems: 10,});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
Python
from apify_client import ApifyClientclient = ApifyClient()run = client.actor("crawloop/radwell-scraper").call(run_input={"brands": ["ALLEN BRADLEY"],"runMode": "listings","maxItems": 100,})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item["partNumber"], item.get("surplusPrice"), item.get("repairPrice"))
cURL
curl "https://api.apify.com/v2/acts/crawloop~radwell-scraper/runs?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"partNumbers":["1747-L524"],"runMode":"details","maxItems":5}'
MCP and AI assistants
Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call this Actor by its Store ID / name.
Example prompts:
- "Run Radwell Scraper for part numbers 1747-L524 and 1756-L81E and return surplus and repair prices as JSON"
- "Scrape Allen Bradley brand listings on Radwell in listings mode for the first 100 in-stock parts"
- "Chain Rockwell Lifecycle Tracker then Radwell Scraper for obsolete SLC 500 catalog numbers"
Suite next step
After aftermarket pricing, enrich OEM specs with Rockwell Product Scraper, or screen lifecycle first with Rockwell Lifecycle Tracker. Discover SKUs with Rockwell Full Catalog Crawler.
FAQ
Is this a Radwell API?
No official public developer API. This Actor is a structured scrape / API alternative for catalog research workflows.
Why residential proxies?
Radwell sits behind Cloudflare + DataDome. Datacenter IPs usually hit a captcha interstitial — use Apify Residential (US).
Listings vs details?
listings is the fast path for surplus/repair card prices (best for brand/search volume). details opens each Buy page for condition tiers, regional stock, and specs when you need PDP depth.
Allen-Bradley only?
No — any brand on the catalog (Omron, Siemens, Fanuc, etc.). Allen-Bradley is the most common procurement query.
Related Actors
| Actor | Role |
|---|---|
| Rockwell Product Scraper | OEM specs by catalog number |
| Rockwell Lifecycle Tracker | Active / obsolete screening |
| Rockwell Full Catalog Crawler | Discover Allen-Bradley SKUs |
| Mouser Product Scraper | Authorized electronics pricing |
| DigiKey Product Scraper | Authorized electronics pricing |
| RS Online Scraper | Authorized industrial catalog |