# Siemens TED Datasheet Parser — Specs JSON (`crawloop/siemens-datasheet-pdf-crawler`) Actor

Parse Siemens TED catalog datasheet PDFs into structured JSON: specifications, tables, limits, and diagrams. Chain after TED Datasheet Downloader.

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

## Pricing

from $10.00 / 1,000 parsed 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 Parser — Specs JSON

> **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](https://apify.com/crawloop/siemens-datasheet-downloader) |
| | [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** ◄── you are here |

> **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 parser** — parse compact TED catalog PDFs into structured JSON: specifications, tables, limits, and diagrams. Chain after [TED Datasheet Downloader](https://apify.com/crawloop/siemens-datasheet-downloader). Use from Python, Node.js, or MCP.

### When to use this Actor

Use when you have TED PDFs in Key-Value Store (or direct TED URLs) and need structured specs. For SIOS document parsing, use [Siemens Document PDF Parser](https://apify.com/crawloop/siemens-sieportal-product-datasheet-pdf-crawler).

### Key Features

- **TED PDF → JSON** — Specs, tables, limits, diagrams
- **KV Store or URL input** — Chain after TED Downloader
- **Parse status** — PARSED / PARTIAL / FAILED visibility
- **Browser-free parsing** — No SiePortal session for parse-only mode

### Input Parameters

| Parameter | Description | Default |
| :--- | :--- | :--- |
| `keyValueStoreId` | Store ID from TED Downloader run. | — |
| `items` | List of partNumber + keyValueStoreKey / downloadUrl / fileName. | — |
| `extractDiagrams` | Extract diagram metadata. | `false` |
| `maxConcurrency` | Parallel parse workers. | `3` |

#### Input Example

```json
{
  "keyValueStoreId": "YOUR_TED_DOWNLOADER_STORE_ID",
  "items": [{
    "partNumber": "6ES7193-6BP00-0DA0",
    "downloadUrl": "https://mall.industry.siemens.com/teddatasheet/?format=PDF&mlfbs=6ES7193-6BP00-0DA0&language=en&caller=SiePortal",
    "fileName": "6ES7193-6BP00-0DA0_datasheet_en.pdf"
  }],
  "extractDiagrams": false,
  "maxConcurrency": 3
}
```

### Output Format

```json
{
  "partNumber": "6ES7193-6BP00-0DA0",
  "fileName": "6ES7193-6BP00-0DA0_datasheet_en.pdf",
  "status": "PARSED",
  "pageCount": 2,
  "tableCount": 3,
  "specificationCount": 24,
  "diagramCount": 0,
  "parsedAt": "2026-08-03T12:00:00Z"
}
```

### Use cases

| Use case | What you get |
| :--- | :--- |
| **TED digitization** | Specs/tables as JSON |
| **BOM enrichment** | Structured attributes from catalog PDFs |
| **Compare vs SIOS parse** | Compact TED vs full manuals |
| **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-pdf-crawler').call({{ keyValueStoreId: 'YOUR_STORE_ID', items: [{{ partNumber: '6ES7193-6BP00-0DA0', fileName: '6ES7193-6BP00-0DA0_datasheet_en.pdf' }}], extractDiagrams: false, 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-pdf-crawler").call(
    run_input={{"keyValueStoreId": "YOUR_STORE_ID", "items": [{"partNumber": "6ES7193-6BP00-0DA0", "fileName": "6ES7193-6BP00-0DA0_datasheet_en.pdf"}], "extractDiagrams": False, "maxConcurrency": 3}}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item.get("partNumber"), item.get("specificationCount"), item.get("status"))
```

#### cURL

```bash
curl "https://api.apify.com/v2/acts/crawloop~siemens-datasheet-pdf-crawler/runs?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"keyValueStoreId":"YOUR_STORE_ID","items":[{"partNumber":"6ES7193-6BP00-0DA0","fileName":"6ES7193-6BP00-0DA0_datasheet_en.pdf"}],"extractDiagrams":false,"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-pdf-crawler`.

Example prompts:

- "Parse Siemens TED datasheets from this Key-Value Store and return specificationCount"
- "Run TED Datasheet Parser after TED Downloader for these MPNs"
- "Chain TED Datasheet Downloader then TED Datasheet Parser"

### Suite next step

Start downloads with [Siemens TED Datasheet Downloader](https://apify.com/crawloop/siemens-datasheet-downloader). For SIOS manuals, use [Siemens Document Downloader](https://apify.com/crawloop/siemens-sieportal-document-downloader).

### Related Actors — Siemens Automation

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

# Actor input Schema

## `keyValueStoreId` (type: `string`):

Store ID from a previous Product Datasheet Downloader or Document Downloader run. Required when using keyValueStoreKeys or items.

## `keyValueStoreKeys` (type: `array`):

PDF keys from a downloader dataset (keyValueStoreKey field). Parse-only — no SiePortal or TED download.

## `items` (type: `array`):

Downloader dataset rows with keyValueStoreKey and/or downloadUrl (TED PDF URL from Product Datasheet Downloader).

## `extractDiagrams` (type: `boolean`):

Save large images from PDF pages to the run Key-Value Store.

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

Parallel PDF parsing workers.

## Actor input object example

```json
{
  "items": [
    {
      "partNumber": "6ES7193-6BP00-0DA0",
      "downloadUrl": "https://mall.industry.siemens.com/teddatasheet/?format=PDF&mlfbs=6ES7193-6BP00-0DA0&language=en&caller=SiePortal",
      "fileName": "6ES7193-6BP00-0DA0_datasheet_en.pdf"
    }
  ],
  "extractDiagrams": false,
  "maxConcurrency": 3
}
```

# 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 = {
    "items": [
        {
            "partNumber": "6ES7193-6BP00-0DA0",
            "downloadUrl": "https://mall.industry.siemens.com/teddatasheet/?format=PDF&mlfbs=6ES7193-6BP00-0DA0&language=en&caller=SiePortal",
            "fileName": "6ES7193-6BP00-0DA0_datasheet_en.pdf"
        }
    ],
    "maxConcurrency": 3
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawloop/siemens-datasheet-pdf-crawler").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 = {
    "items": [{
            "partNumber": "6ES7193-6BP00-0DA0",
            "downloadUrl": "https://mall.industry.siemens.com/teddatasheet/?format=PDF&mlfbs=6ES7193-6BP00-0DA0&language=en&caller=SiePortal",
            "fileName": "6ES7193-6BP00-0DA0_datasheet_en.pdf",
        }],
    "maxConcurrency": 3,
}

# Run the Actor and wait for it to finish
run = client.actor("crawloop/siemens-datasheet-pdf-crawler").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 '{
  "items": [
    {
      "partNumber": "6ES7193-6BP00-0DA0",
      "downloadUrl": "https://mall.industry.siemens.com/teddatasheet/?format=PDF&mlfbs=6ES7193-6BP00-0DA0&language=en&caller=SiePortal",
      "fileName": "6ES7193-6BP00-0DA0_datasheet_en.pdf"
    }
  ],
  "maxConcurrency": 3
}' |
apify call crawloop/siemens-datasheet-pdf-crawler --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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