Siemens MindSphere website screenshot

Siemens MindSphere

Siemens MindSphere (now Insights Hub) is Siemens' Industrial IoT as a Service platform that connects industrial machines and assets to the cloud. It enables companies to harness the wealth of data generated by their operations through APIs for asset management, time series data ingestion, event management, file services, identity management, and agent connectivity. MindSphere supports digital twin creation and industrial analytics use cases across manufacturing, energy, transportation, and infrastructure.

7 APIs 0 Features
IoTIndustrialDigital TwinTime SeriesAsset ManagementIndustrial IoTInsights Hub

APIs

Siemens MindSphere Asset Management API

The MindSphere Asset Management API enables creating and managing digital representations of industrial equipment and facilities as hierarchical asset trees. Assets model real-w...

Siemens MindSphere IoT Time Series API

The MindSphere IoT Time Series API enables storing, querying, and retrieving time-series telemetry data from industrial equipment and IoT assets. Supports high-frequency data in...

Siemens MindSphere Identity Management API

Manages environments, users, and groups within MindSphere (Insights Hub). Provides user provisioning, group membership management, and role assignment for industrial IoT platfor...

Siemens MindSphere IoT File Service API

File management service for files related to IoT assets. Enables uploading, downloading, and managing files attached to asset instances such as firmware images, configuration fi...

Siemens MindSphere Event Management API

The Event Management Service captures and manages events generated by industrial devices in MindSphere. Events represent significant occurrences such as alarms, machine state ch...

Siemens MindSphere Agent Management API

API to onboard, offboard, update, and delete MindConnect agents that act as gateways connecting field devices to the MindSphere platform. Manages agent configurations and certif...

Siemens MindConnect Node.js SDK

TypeScript and JavaScript community SDK for Industrial IoT APIs providing convenient wrappers around the MindSphere REST APIs for asset management, time series, file upload, and...

Collections

GraphQL

Siemens MindSphere GraphQL API

Siemens MindSphere is an industrial IoT platform. The API covers asset management, time series data ingestion and retrieval, IoT connectivity, analytics pipelines, digital twin ...

GRAPHQL

Pricing Plans

Rate Limits

Siemens Mindsphere Rate Limits

1 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Siemens Mindsphere Context

23 classes · 11 properties

JSON-LD

JSON Structure

Siemens Mindsphere Asset Structure

0 properties

JSON STRUCTURE

Siemens Mindsphere Structure

0 properties

JSON STRUCTURE

Example Payloads

Resources

🔗
Website
Website
🔗
Documentation
Documentation
🌐
DeveloperPortal
DeveloperPortal
👥
GitHub
GitHub
📜
TermsOfService
TermsOfService
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Siemens MindSphere IoT Time Series API
  version: '3.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Timeseries
    type: folder
  items:
  - info:
      name: Ingest time-series data for multiple assets/aspects
      type: http
    http:
      method: PUT
      url: https://gateway.eu1.mindsphere.io/api/iottimeseries/v3/timeseries
      body:
        type: json
        data: '{}'
    docs: Creates or updates time-series data for multiple asset-aspect combinations in a single request. Each entry specifies
      an assetId, aspectName, and array of timestamped data points.
  - info:
      name: Query time-series data for an asset aspect
      type: http
    http:
      method: GET
      url: https://gateway.eu1.mindsphere.io/api/iottimeseries/v3/timeseries/:assetId/:aspectName
      params:
      - name: assetId
        value: 5d7e59d0-8c94-4bce-8a0c-3a7fcc9a1234
        type: path
        description: Unique MindSphere asset identifier (UUID)
      - name: aspectName
        value: EnvironmentData
        type: path
        description: Aspect name (must match asset type aspect configuration)
      - name: from
        value: '2026-01-01T00:00:00Z'
        type: query
        description: Start of time range (ISO 8601 UTC)
      - name: to
        value: '2026-01-01T01:00:00Z'
        type: query
        description: End of time range (ISO 8601 UTC)
      - name: limit
        value: ''
        type: query
        description: Maximum number of data points to return (max 2000)
      - name: select
        value: temperature,pressure
        type: query
        description: Comma-separated list of variable names to include
      - name: sort
        value: ''
        type: query
        description: Sort order by _time
      - name: latestValue
        value: ''
        type: query
        description: Return only the most recent data point
    docs: Retrieves time-series data for a specific asset and aspect within a time range. Supports time range queries, field
      selection, and result limiting. Data is returned ordered by timestamp ascending.
  - info:
      name: Ingest time-series data for a single asset aspect
      type: http
    http:
      method: PUT
      url: https://gateway.eu1.mindsphere.io/api/iottimeseries/v3/timeseries/:assetId/:aspectName
      params:
      - name: assetId
        value: 5d7e59d0-8c94-4bce-8a0c-3a7fcc9a1234
        type: path
        description: Unique MindSphere asset identifier (UUID)
      - name: aspectName
        value: EnvironmentData
        type: path
        description: Aspect name (must match asset type aspect configuration)
      body:
        type: json
        data: '{}'
    docs: Creates or updates time-series data for a specific asset and aspect. Each data point must include a _time field
      (ISO 8601 UTC) and values for aspect variables.
  - info:
      name: Delete time-series data for an asset aspect
      type: http
    http:
      method: DELETE
      url: https://gateway.eu1.mindsphere.io/api/iottimeseries/v3/timeseries/:assetId/:aspectName
      params:
      - name: assetId
        value: 5d7e59d0-8c94-4bce-8a0c-3a7fcc9a1234
        type: path
        description: Unique MindSphere asset identifier (UUID)
      - name: aspectName
        value: EnvironmentData
        type: path
        description: Aspect name (must match asset type aspect configuration)
      - name: from
        value: '2026-01-01T00:00:00Z'
        type: query
        description: Start of hourly-aligned range (ISO 8601 UTC)
      - name: to
        value: '2026-01-01T01:00:00Z'
        type: query
        description: End of hourly-aligned range (ISO 8601 UTC)
    docs: Deletes all time-series data within an hourly-aligned time range for a specific asset and aspect. The time range
      must align to UTC hour boundaries.
bundled: true