Voltus · Arazzo Workflow

Report Voltus telemetry and read it back

Version 1.0.0

Submit interval telemetry and controllable load for an enrolled site, then read interval kW back within Voltus's documented limits (10 sites, 90 days, 10,000 points per site).

1 workflow 2 source APIs 1 provider
View Spec View on GitHub EnergyUnited StatesElectricityDemand ResponseVirtual Power PlantDERGridEnergy MarketsFlexibilityEnergy StorageOpenADRTelemetryArazzoWorkflows

Provider

voltus

Workflows

report-and-read-telemetry
Resolve a site, post telemetry, post controllable load, then read kW back.
4 steps inputs: apiKey, endTime, intervalSeconds, startTime outputs: siteId
1
list-sites
Resolve site and meter ids.
2
post-telemetry
Submit a metered interval reading.
3
post-controllable-load
Submit the aggregate kW your integration controls at that site.
4
get-telemetry-kw
Read interval kW back for the site.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Report Voltus telemetry and read it back
  version: 1.0.0
  description: >-
    Submit interval telemetry and controllable load for an enrolled site, then
    read interval kW back within Voltus's documented limits (10 sites, 90 days,
    10,000 points per site).
sourceDescriptions:
- name: sitesApi
  url: ../openapi/voltus-sites-api-openapi.yml
  type: openapi
- name: telemetryApi
  url: ../openapi/voltus-telemetry-api-openapi.yml
  type: openapi
workflows:
- workflowId: report-and-read-telemetry
  summary: Resolve a site, post telemetry, post controllable load, then read kW back.
  inputs:
    type: object
    required: [apiKey, startTime, endTime]
    properties:
      apiKey:
        type: string
        default: secret
      startTime:
        type: string
        description: RFC 3339, aligned to 30 seconds. Exclusive lower bound on read-back.
      endTime:
        type: string
        description: RFC 3339, aligned to 30 seconds. Inclusive upper bound.
      intervalSeconds:
        type: integer
        description: One of 30, 60, 300, 900, 1800, 3600, 21600.
        default: 3600
  steps:
  - stepId: list-sites
    description: Resolve site and meter ids.
    operationId: 'voltus#get-sites'
    parameters:
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      siteId: $response.body#/sites/0/id
  - stepId: post-telemetry
    description: Submit a metered interval reading.
    operationId: 'voltus#post-telemetry'
    parameters:
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        telemetry:
        - site_id: $steps.list-sites.outputs.siteId
          timestamp: $inputs.startTime
          interval_seconds: 30
          units: kW
          value: 0.2
    successCriteria:
    - condition: $statusCode == 200
  - stepId: post-controllable-load
    description: Submit the aggregate kW your integration controls at that site.
    operationId: 'voltus#post-controllable-load'
    parameters:
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        controllable_load:
        - site_id: $steps.list-sites.outputs.siteId
          timestamp: $inputs.startTime
          interval_seconds: 30
          units: kW
          value: 0.2
    successCriteria:
    - condition: $statusCode == 200
  - stepId: get-telemetry-kw
    description: Read interval kW back for the site.
    operationId: 'voltus#get-telemetry-kw'
    parameters:
    - name: start_time
      in: query
      value: $inputs.startTime
    - name: end_time
      in: query
      value: $inputs.endTime
    - name: interval_seconds
      in: query
      value: $inputs.intervalSeconds
    - name: site_id
      in: query
      value: $steps.list-sites.outputs.siteId
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    siteId: $steps.list-sites.outputs.siteId

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/voltus-report-and-read-telemetry"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.