AspenTech Historical API

Historical time-series data access

Operations 1

POST /api/data/readhistory Read historical time-series data #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aspentech-historical-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aspentech-historical-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AspenTech Inmation Web Data Historical API
  description: The AspenTech Inmation Web API provides HTTP and WebSocket interfaces for external applications to interact with the AspenTech Inmation industrial IoT and time-series data platform. RPC-based REST APIs enable access to process data, system services, and automation functions for manufacturing and energy operations.
  version: 1.108.0
  contact:
    name: AspenTech Support
    url: https://atdocs.inmation.com/api/1.108/webapi/index.html
servers:
- url: http://{hostname}:8002
  description: Inmation Web API server
  variables:
    hostname:
      default: localhost
      description: Inmation server hostname or IP address
security:
- basicAuth: []
- bearerToken: []
tags:
- name: Historical
  description: Historical time-series data access
paths:
  /api/data/readhistory:
    post:
      operationId: readHistoricalData
      summary: Read historical time-series data
      description: Retrieve historical time-series data for one or more process items within a specified time range. Supports raw, interpolated, and aggregated retrieval modes.
      tags:
      - Historical
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - paths
              - startTime
              - endTime
              properties:
                paths:
                  type: array
                  items:
                    type: string
                startTime:
                  type: string
                  format: date-time
                  description: Start of historical range (ISO 8601)
                endTime:
                  type: string
                  format: date-time
                  description: End of historical range (ISO 8601)
                retrievalMode:
                  type: string
                  enum:
                  - Raw
                  - Interpolated
                  - Average
                  - Minimum
                  - Maximum
                  - Count
                  default: Raw
                numberOfIntervals:
                  type: integer
                  description: Number of intervals for aggregated retrieval
      responses:
        '200':
          description: Historical data values
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: array
                    items:
                      $ref: '#/components/schemas/HistoricalDataResult'
components:
  schemas:
    HistoricalDataResult:
      type: object
      properties:
        path:
          type: string
        values:
          type: array
          items:
            type: object
            properties:
              value:
                description: Historical value
              quality:
                type: integer
              timestamp:
                type: string
                format: date-time
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    bearerToken:
      type: http
      scheme: bearer