Siemens TED Datasheet Downloader — Catalog PDFs avatar

Siemens TED Datasheet Downloader — Catalog PDFs

Pricing

from $2.00 / 1,000 downloaded product datasheets

Go to Apify Store
Siemens TED Datasheet Downloader — Catalog PDFs

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

Andrej Kiva

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

19 hours ago

Last modified

Share

Crawloop Siemens Automation Suite — SiePortal, SIOS, and TED datasheet workflows for procurement and BOM engineering.

DiscoveryEnrichmentSIOS documentsTED datasheets
Catalog CrawlerSiePortal ScraperDocument DownloaderTED Datasheet Downloader ◄── you are here
Lifecycle TrackerDocument PDF ParserTED 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

ParameterDescriptionDefault
searchTermsRequired. Siemens part numbers / MLFBs.
languageDatasheet language.en
downloadFileSave PDF to Key-Value Store.true
maxConcurrencyParallel 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 caseWhat you get
Catalog datasheet packsTED PDFs in Key-Value Store
BOM literature bundleMPN → datasheet mapping
Parse pipelineFeed TED Datasheet Parser
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/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 ApifyClient
client = 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.

FocusActor
Discover MPNsSiemens Catalog Crawler
Full SiePortal PDPSiemens SiePortal Scraper
SIOS PDF downloadSiemens Document Downloader
TED datasheet downloadSiemens TED Datasheet Downloader ◄── you are here
TED datasheet parseSiemens TED Datasheet Parser