steute Technologies GmbH & Co. KG System Status API

The System Status API from steute Technologies GmbH & Co. KG — 1 operation(s) for system status.

Operations 1

GET /api/v2/system-status Get the system status information. #

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/steute-technologies-gmbh-and-co-kg-system-status-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

steute-technologies-gmbh-and-co-kg-system-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sensor Bridge API Version 2 Access Point System Status API
  description: <h3>steute sWave.NET Sensor Bridge API v2</h3><ul><li>Get status information of access points and switches.</li><li>Configure groups, device parameters and notifications.</li></ul>
  version: 2.4.1 [d4919ee69]
  contact: {}
servers:
- url: http://
- url: https://
tags:
- name: System Status
paths:
  /api/v2/system-status:
    get:
      operationId: SystemStatusController_listSystemStatus
      summary: Get the system status information.
      description: Get information about the current sensor bridge software version, unix system timestamp, average workload, uptime and memory usage )
      parameters: []
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SystemStatusDto'
        '403':
          description: invalid credentials
      tags:
      - System Status
      security:
      - bearer: []
components:
  schemas:
    SystemStatusDto:
      type: object
      properties:
        softwareVersion:
          type: string
          example: 1.0.3
          description: Current version of the sensor bridge software
        systemTimestamp:
          type: number
          example: '1559571110'
          description: Unix timestamp for the system time
        loadAverage1:
          type: number
          example: '11'
          description: Load average for the last minute
        loadAverage5:
          type: number
          example: '11'
          description: Load average for the last five minutes
        loadAverage15:
          type: number
          example: '11'
          description: Load average for the last fifteen minutes
        freeMemory:
          type: number
          example: '5201952768'
          description: Free system memory in bytes
        totalMemory:
          type: number
          example: '16989540352'
          description: Total system memory in bytes
        uptime:
          type: number
          example: '96114'
          description: System uptime in seconds
        softwarePartNumber:
          type: string
          example: '0'
          description: Software part number
        softwareVariant:
          type: string
          example: 'Software module: Sensor Bridge'
          description: Software variant
      required:
      - softwareVersion
      - systemTimestamp
      - loadAverage1
      - loadAverage5
      - loadAverage15
      - freeMemory
      - totalMemory
      - uptime
      - softwarePartNumber
      - softwareVariant
  securitySchemes:
    bearer:
      type: apiKey
      in: header
      name: JWTAuthorization