T-IA ConnectAPI V1

API Reference

Bienvenido a la documentación de la API de T-IA Connect. Esta REST API le permite interactuar directamente con Siemens TIA Portal, habilitando la automatización completa de sus flujos de trabajo de ingeniería mediante solicitudes HTTP estándar.

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

Capacidades principales

Integración nativa

Conexión directa a la Openness API sin la complejidad de DLL propietarias.

Retroalimentación en tiempo real

Monitoree compilaciones y descargas mediante WebSockets y la Jobs API.

Automatización headless

Diseñado para pipelines CI/CD y entornos de servidores industriales.

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"
  }
}