Structured data extraction for Siemens SiePortal (Industry Mall), SIOS, and TED product datasheets. Built for procurement teams, system integrators, and BOM engineering workflows.
All actors run on Apify — serverless, API-ready, pay-per-result.
Disclaimer: These are unofficial integrations developed independently of Siemens AG. They are not affiliated with, sponsored by, or endorsed by Siemens AG or any of its subsidiaries.
Siemens, SiePortal, SIMATIC, and related names are trademarks of Siemens AG. Product data is read from publicly accessible Siemens web sources only; no proprietary databases are redistributed.
These tools are 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, Siemens 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.
Product site: crawloop.com/siemens-automation
Also from Crawloop Industrial: Rockwell Automation Suite · GitHub docs
| Discovery | Enrichment | SIOS documents | TED datasheets |
|---|---|---|---|
| Catalog Crawler | SiePortal Scraper | Document Downloader | TED Datasheet Downloader |
| Lifecycle Tracker | Document PDF Parser | TED Datasheet Parser |
Phase 1 — Discover MPNs Phase 2 — Screen & enrich Phase 3 — Documents & specs
───────────────────────── ───────────────────────── ─────────────────────────────
Catalog Crawler ──► MPN list ──► Lifecycle Tracker ──► SiePortal Scraper
│
│
┌────────────────────────────┴────────────────────────────┐
│ │
▼ ▼
Document Downloader (SIOS) TED Datasheet Downloader
certificates, manuals, CAD compact catalog PDFs
│ │
▼ ▼
Document PDF Parser TED Datasheet Parser
specs from SIOS PDFs specs from TED PDFs
| Your goal | Start here |
|---|---|
| Export all MPNs via keyword or full-catalog discovery | Catalog Crawler |
| Full product specs, lifecycle, document links, accessories — by MPN | SiePortal Scraper |
| Bulk BOM check: lifecycle phase + successor MPNs (fast, low cost) | Lifecycle Tracker |
| Download CE/UL/manual PDFs from SIOS to Key-Value Store | Document Downloader |
| Extract structured specs from SIOS/manual PDFs | Document PDF Parser |
| Download official TED catalog datasheet PDF (1 MLFB → 1 PDF) | TED Datasheet Downloader |
| Parse TED PDFs into JSON specs (no browser) | TED Datasheet Parser |
| Pipeline | Source | Download | Parse |
|---|---|---|---|
| SIOS | Manuals, certificates, engineering files | Document Downloader | Document PDF Parser |
| TED | Compact Industry Mall product datasheet | TED Datasheet Downloader | TED Datasheet Parser |
BOM obsolescence audit — Run Lifecycle Tracker on your full MPN list. Filter discontinued parts and successors. Enrich only replacements with SiePortal Scraper.
Procurement catalog build — Discover MPNs with Catalog Crawler. Export deduplicated part numbers with PDP URLs for ERP import.
Compliance documentation pack — Download certificates and manuals via Document Downloader. Parse specification tables with Document PDF Parser.
High-volume datasheet extraction — TED Datasheet Downloader → TED Datasheet Parser. HTTP download + parse-only chain, no browser on the parse step.
Pay-per-event on Apify. You are billed only for successful results — not for NOT_FOUND or FAILED rows.
| Actor | Typical price |
|---|---|
| SiePortal Scraper, Catalog Crawler, Lifecycle Tracker, Document Downloader | from $5 / 1,000 results |
| TED Datasheet Downloader | $2 / 1,000 downloaded PDFs |
| TED Datasheet Parser, Document PDF Parser (parse-only) | $2 / 1,000 parsed PDFs |
Exact pricing is shown on each Actor page in Apify Store before you run.
- Create a free Apify account.
- Open the Actor you need from the table above.
- Paste your Siemens part numbers (MPNs) or search keywords into the input form.
- Run — results appear in Dataset (JSON/CSV) or Key-Value Store (PDFs).
Example — check one MPN lifecycle:
{
"searchTerms": ["6GK7343-1EX11-0XE0"],
"locale": "en-nl",
"maxConcurrency": 1,
"proxyConfiguration": { "useApifyProxy": true }
}Run on: Lifecycle Tracker
Example — full product record:
{
"searchTerms": ["6ES7193-6BP00-0DA0"],
"maxResultsPerSearch": 1,
"proxyConfiguration": { "useApifyProxy": true }
}Run on: SiePortal Scraper
All actors support the Apify API and official clients (apify-client for Python/JS). Each Actor page includes copy-paste API examples.
pip install apify-clientfrom apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("crawloop/siemens-sieportal-product-lifecycle-tracker").call(
run_input={"searchTerms": ["6GK7343-1EX11-0XE0"], "proxyConfiguration": {"useApifyProxy": True}}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["lifecyclePhase"], item.get("successors"))Crawloop builds production-grade web data actors for industrial automation and other verticals. Actor source code is proprietary; this repository is the public product hub and documentation index.
Product site: crawloop.com/siemens-automation · Related suite: Rockwell Automation · GitHub docs
Questions or custom enterprise runs: open an issue in this repository or contact via Apify Store.
This repo contains marketing and documentation only. Actor source code is deployed privately to Apify Cloud.
| Path | Purpose |
|---|---|
README.md |
This page — suite overview |
docs/ |
GitHub Pages site (same content) |