T-IA ConnectAPI V1

API Reference

Welcome to the T-IA Connect API documentation. This REST API allows you to interact directly with Siemens TIA Portal, enabling full automation of your engineering workflows through standard HTTP requests.

316endpoints documented
across 22 categories

Base URL

All endpoints are prefixed with:

http://localhost:9000/api

Content Type

Requests and responses are formatted as:

application/json

Key Capabilities

Native Integration

Direct connection to Openness API without proprietary DLL complexity.

Real-time Feedback

Monitor compilation and downloads via WebSockets and Jobs API.

Headless Automation

Designed for CI/CD pipelines and industrial server environments.

Quick Start

Test that the API is running with a simple health check:

Terminal
curl http://localhost:9000/api/health -H "X-API-KEY: YOUR_API_KEY"

Expected response:

response.json
{
  "success": true,
  "data": {
    "healthy": true,
    "apiVersion": "1.0.0"
  }
}