Siemens TED Datasheet Downloader — Catalog PDFs
Pricing
from $2.00 / 1,000 downloaded product datasheets
Siemens TED Datasheet Downloader — Catalog PDFs
Download compact Siemens TED product datasheet PDFs by MPN from SiePortal. Saves PDFs to Key-Value Store with metadata. Chain with TED Datasheet Parser.
Pricing
from $2.00 / 1,000 downloaded product datasheets
Rating
0.0
(0)
Developer
Andrej Kiva
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
19 hours ago
Last modified
Categories
Share
Crawloop Siemens Automation Suite — SiePortal, SIOS, and TED datasheet workflows for procurement and BOM engineering.
| Discovery | Enrichment | SIOS documents | TED datasheets |
|---|---|---|---|
| Catalog Crawler | SiePortal Scraper | Document Downloader | TED Datasheet Downloader ◄── you are here |
| Lifecycle Tracker | Document PDF Parser | TED Datasheet Parser |
Disclaimer: This is an unofficial integration developed independently of Siemens AG. It is 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.
This Actor is provided for informational and research purposes only. 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.
Siemens TED datasheet downloader — download compact TED product datasheet PDFs by MPN from SiePortal. Saves files to Apify Key-Value Store with metadata. Chain with TED Datasheet Parser. Use from Python, Node.js, or MCP.
When to use this Actor
Use when you need short TED catalog datasheets (not full SIOS manuals). For SIOS certificates/manuals, use Siemens Document Downloader.
Key Features
- TED PDF download — Compact catalog datasheets by MPN
- KV Store files — Binary PDFs + dataset metadata
- Language selection — e.g.
en - HTTP-friendly — Lightweight downloader for BOM packs
Input Parameters
| Parameter | Description | Default |
|---|---|---|
searchTerms | Required. Siemens part numbers / MLFBs. | — |
language | Datasheet language. | en |
downloadFile | Save PDF to Key-Value Store. | true |
maxConcurrency | Parallel workers. | 3 |
Input Example
{"searchTerms": ["3SU1950-0FP80-0AA0-Z Y05", "6ES7214-1AG40-0XB0"],"language": "en","downloadFile": true,"maxConcurrency": 3}
Output Format
{"searchTerm": "6ES7214-1AG40-0XB0","partNumber": "6ES7214-1AG40-0XB0","language": "en","fileName": "6ES7214-1AG40-0XB0_datasheet_en.pdf","fileSizeBytes": 185432,"keyValueStoreKey": "6ES7214-1AG40-0XB0_datasheet_en.pdf","downloaded": true,"status": "DOWNLOADED","checkedAt": "2026-08-03T12:00:00Z"}
Use cases
| Use case | What you get |
|---|---|
| Catalog datasheet packs | TED PDFs in Key-Value Store |
| BOM literature bundle | MPN → datasheet mapping |
| Parse pipeline | Feed TED Datasheet Parser |
| 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/siemens-datasheet-downloader').call({{ searchTerms: ['6ES7214-1AG40-0XB0'], language: 'en', downloadFile: true, maxConcurrency: 3 }});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/siemens-datasheet-downloader").call(run_input={{"searchTerms": ["6ES7214-1AG40-0XB0"], "language": "en", "downloadFile": True, "maxConcurrency": 3}})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item.get("partNumber"), item.get("status"), item.get("fileName"))
cURL
curl "https://api.apify.com/v2/acts/crawloop~siemens-datasheet-downloader/runs?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"searchTerms":["6ES7214-1AG40-0XB0"],"language":"en","downloadFile":true,"maxConcurrency":3}'
MCP and AI assistants
Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call crawloop/siemens-datasheet-downloader.
Example prompts:
- "Run Siemens TED Datasheet Downloader for 6ES7214-1AG40-0XB0 and return fileName and status"
- "Download English TED datasheets for these Siemens MPNs"
- "Chain TED Datasheet Downloader then TED Datasheet Parser"
Suite next step
Parse TED PDFs with Siemens TED Datasheet Parser. For full SIOS manuals, use Siemens Document Downloader.
Related Actors — Siemens Automation
| Focus | Actor |
|---|---|
| Discover MPNs | Siemens Catalog Crawler |
| Full SiePortal PDP | Siemens SiePortal Scraper |
| SIOS PDF download | Siemens Document Downloader |
| TED datasheet download | Siemens TED Datasheet Downloader ◄── you are here |
| TED datasheet parse | Siemens TED Datasheet Parser |