# Siemens TED Datasheet Downloader — Catalog PDFs (`crawloop/siemens-datasheet-downloader`) Actor

Download compact Siemens TED product datasheet PDFs by MPN from SiePortal. Saves PDFs to Key-Value Store with metadata. Chain with TED Datasheet Parser.

- **URL**: https://apify.com/crawloop/siemens-datasheet-downloader.md
- **Developed by:** [Andrej Kiva](https://apify.com/crawloop) (community)
- **Categories:** Automation, Developer tools, Integrations
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 downloaded product datasheets

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Siemens TED Datasheet Downloader — Catalog PDFs

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

| Discovery | Enrichment | SIOS documents | TED datasheets |
| :--- | :--- | :--- | :--- |
| [Catalog Crawler](https://apify.com/crawloop/siemens-sieportal-product-catalog-crawler) | [SiePortal Scraper](https://apify.com/crawloop/siemens-sieportal-scraper) | [Document Downloader](https://apify.com/crawloop/siemens-sieportal-document-downloader) | **TED Datasheet Downloader** ◄── you are here |
| | [Lifecycle Tracker](https://apify.com/crawloop/siemens-sieportal-lifecycle-tracker) | [Document PDF Parser](https://apify.com/crawloop/siemens-sieportal-product-datasheet-pdf-crawler) | [TED Datasheet Parser](https://apify.com/crawloop/siemens-datasheet-pdf-crawler) |

> **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](https://apify.com/crawloop/siemens-datasheet-pdf-crawler). 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](https://apify.com/crawloop/siemens-sieportal-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

```json
{
  "searchTerms": ["3SU1950-0FP80-0AA0-Z Y05", "6ES7214-1AG40-0XB0"],
  "language": "en",
  "downloadFile": true,
  "maxConcurrency": 3
}
```

### Output Format

```json
{
  "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

```javascript
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

```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

```bash
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](https://docs.apify.com/platform/integrations/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](https://apify.com/crawloop/siemens-datasheet-pdf-crawler). For full SIOS manuals, use [Siemens Document Downloader](https://apify.com/crawloop/siemens-sieportal-document-downloader).

### Related Actors — Siemens Automation

| Focus | Actor |
| :--- | :--- |
| Discover MPNs | [Siemens Catalog Crawler](https://apify.com/crawloop/siemens-sieportal-product-catalog-crawler) |
| Full SiePortal PDP | [Siemens SiePortal Scraper](https://apify.com/crawloop/siemens-sieportal-scraper) |
| SIOS PDF download | [Siemens Document Downloader](https://apify.com/crawloop/siemens-sieportal-document-downloader) |
| **TED datasheet download** | **Siemens TED Datasheet Downloader** ◄── you are here |
| TED datasheet parse | [Siemens TED Datasheet Parser](https://apify.com/crawloop/siemens-datasheet-pdf-crawler) |

# Actor input Schema

## `searchTerms` (type: `array`):

Siemens MLFB / order numbers. One official TED product data sheet PDF is downloaded per value via mall.industry.siemens.com/teddatasheet.

## `language` (type: `string`):

TED datasheet language code passed to the Siemens Industry Mall endpoint (e.g. en, de, fr).

## `downloadFile` (type: `boolean`):

When enabled, saves the PDF to the run Key-Value Store. When disabled, returns metadata and download URL only.

## `maxConcurrency` (type: `integer`):

Parallel TED requests. Lower values reduce WAF 403 rate limits on Apify datacenter IPs.

## `requestDelayMs` (type: `integer`):

Minimum delay between TED HTTP requests.

## `maxRetries` (type: `integer`):

Retries for transient HTTP 403/429/5xx responses with exponential backoff.

## `proxyConfiguration` (type: `object`):

Usually not required. TED PDFs are fetched directly from mall.industry.siemens.com over HTTP.

## Actor input object example

```json
{
  "searchTerms": [
    "3SU1950-0FP80-0AA0-Z Y05"
  ],
  "language": "en",
  "downloadFile": true,
  "maxConcurrency": 2,
  "requestDelayMs": 500,
  "maxRetries": 4,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Default dataset items.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "3SU1950-0FP80-0AA0-Z Y05"
    ],
    "language": "en",
    "maxConcurrency": 2,
    "requestDelayMs": 500,
    "maxRetries": 4,
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawloop/siemens-datasheet-downloader").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerms": ["3SU1950-0FP80-0AA0-Z Y05"],
    "language": "en",
    "maxConcurrency": 2,
    "requestDelayMs": 500,
    "maxRetries": 4,
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("crawloop/siemens-datasheet-downloader").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "3SU1950-0FP80-0AA0-Z Y05"
  ],
  "language": "en",
  "maxConcurrency": 2,
  "requestDelayMs": 500,
  "maxRetries": 4,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call crawloop/siemens-datasheet-downloader --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawloop/siemens-datasheet-downloader",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/QAWdmU1jcJeSqGSWn/builds/Ycsmb9lFgHgYJR8Dk/openapi.json
