Hildebrand Device Type API

The DeviceType API from Hildebrand — 2 operation(s) for devicetype.

Operations 3

POST /devicetype Add a new Device Type #
GET /devicetype Find all device types #
GET /devicetype/{id} Find Device Type by ID #

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/hildebrand-devicetype-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

hildebrand-devicetype-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'API definition for CRUD operations on devices. A device is the physical hardware that can be either: <br></br> <ul>  <li>a gateway - makes information available to the Glow Platform. The IHD/CAD and GlowSticks are examples of our gateways.</li> <br></br> <li>a sensor - detects events or changes to its environment and sends information to other devices (smart electricity meter)</li><br></br> <li>an actuator - a controller, given specific predefined commands it can trigger events, change its environment or perform an operation (auxiliary load control switch in an electricity meter)</li><br></br> </ul>'
  version: 1.1.0
  title: Device Management System Device Type API
  license:
    name: Copyright © 2012-26 by Hildebrand Technology Limited
servers:
- url: https://api.glowmarkt.com/api/v0-1/
tags:
- name: DeviceType
  description: ''
paths:
  /devicetype:
    post:
      tags:
      - DeviceType
      summary: Add a new Device Type
      description: create a new Device Type
      operationId: deviceType.addDeviceType
      security:
      - userToken: []
        applicationId: []
      - appKeys: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddDeviceTypeSucess'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MissingElementsError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeviceTypeReq'
        description: DeviceType Object
        required: true
    get:
      tags:
      - DeviceType
      summary: Find all device types
      description: returns a list of devicetypes
      operationId: deviceType.findAll
      security:
      - userToken: []
        applicationId: []
      - appKeys: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeviceType'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
  /devicetype/{id}:
    get:
      tags:
      - DeviceType
      summary: Find Device Type by ID
      description: Returns a single Device Type
      operationId: deviceType.findById
      parameters:
      - name: id
        in: path
        description: ID of Device Type to return
        required: true
        schema:
          type: string
      security:
      - userToken: []
        applicationId: []
      - appKeys: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeviceType'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: ''
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
components:
  schemas:
    AddDeviceTypeSucess:
      type: object
      properties:
        status:
          type: string
          example: OK
        deviceTypeId:
          type: string
          example: a0872822-c10c-4a90-bf8a-17310ffe10af
    ProtocolResourceTypeResource:
      type: object
      properties:
        protocolId:
          type: string
        resourceTypeId:
          type: string
        resourceId:
          type: string
      required:
      - protocolId
      - resourceTypeId
      - resourceId
    ProtocolResourceType:
      type: object
      properties:
        protocolId:
          type: string
        resourceTypeId:
          type: string
      required:
      - protocolId
      - resourceTypeId
    DeviceTypeReq:
      type: object
      properties:
        description:
          type: string
        protocol:
          type: object
          properties:
            sensors:
              type: array
              items:
                $ref: '#/components/schemas/ProtocolResourceType'
            protocol:
              type: string
          required:
          - protocol
          - sensors
    ServerError:
      type: object
      properties:
        error:
          type: string
          example: An error has occurred
      xml:
        name: AddResourceError
    DeviceType:
      type: object
      properties:
        deviceTypeId:
          type: string
        description:
          type: string
        protocol:
          type: object
          properties:
            sensors:
              type: array
              items:
                $ref: '#/components/schemas/ProtocolResourceTypeResource'
            protocol:
              type: string
          required:
          - protocol
          - sensors
    MissingElementsError:
      type: object
      properties:
        error:
          type: string
          example: missing elements
  securitySchemes:
    orgAppKeys:
      type: http
      scheme: basic
    appKeys:
      type: http
      scheme: basic
    devUserToken:
      type: apiKey
      name: token
      in: header
    userToken:
      type: apiKey
      name: token
      in: header
    applicationId:
      type: apiKey
      name: applicationId
      in: header
    userId:
      type: apiKey
      name: userId
      in: header