Voltus · Arazzo Workflow

Poll Voltus dispatches and curtail enrolled sites

Version 1.0.0

The core Voltus demand-response loop: resolve your enrolled sites, poll for dispatches, then read the individual dispatch to drive per-site curtailment commitments. Runs end-to-end against the public sandbox with the published credential "secret".

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

Provider

voltus

Workflows

poll-dispatches-and-curtail
List sites, poll dispatches, then read one dispatch in detail.
Step 3 targets the dispatch returned by step 2. In production this loop runs continuously; commitment (not the deprecated drop_by) is the kW each site must shed.
3 steps inputs: apiKey outputs: commitment, dispatchId, modificationNumber, startTime
1
list-sites
Resolve the sites enrolled under this key, with their meters.
2
list-dispatches
Poll for active and upcoming dispatches.
3
get-dispatch
Read the dispatch in full before acting on it.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Poll Voltus dispatches and curtail enrolled sites
  version: 1.0.0
  description: >-
    The core Voltus demand-response loop: resolve your enrolled sites, poll for
    dispatches, then read the individual dispatch to drive per-site curtailment
    commitments. Runs end-to-end against the public sandbox with the published
    credential "secret".
  x-realizes-capability-ids:
  - BC-3840.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-3840.30
      capability_name: Demand Response Operations
      spec: voltus-dispatches-api-openapi.yml
      confidence: 0.78
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: dispatchesApi
  url: ../openapi/voltus-dispatches-api-openapi.yml
  type: openapi
- name: sitesApi
  url: ../openapi/voltus-sites-api-openapi.yml
  type: openapi
workflows:
- workflowId: poll-dispatches-and-curtail
  summary: List sites, poll dispatches, then read one dispatch in detail.
  description: >-
    Step 3 targets the dispatch returned by step 2. In production this loop runs
    continuously; commitment (not the deprecated drop_by) is the kW each site
    must shed.
  inputs:
    type: object
    required: [apiKey]
    properties:
      apiKey:
        type: string
        description: Voltus API key. Use "secret" against https://sandbox.voltus.co.
        default: secret
  steps:
  - stepId: list-sites
    description: Resolve the sites enrolled under this key, with their meters.
    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: list-dispatches
    description: Poll for active and upcoming dispatches.
    operationId: 'voltus#get-dispatches'
    parameters:
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      dispatchId: $response.body#/dispatches/0/id
      authorized: $response.body#/dispatches/0/authorized
      commitment: $response.body#/dispatches/0/sites/0/commitment
  - stepId: get-dispatch
    description: Read the dispatch in full before acting on it.
    operationId: 'voltus#get-dispatch'
    parameters:
    - name: id
      in: path
      value: $steps.list-dispatches.outputs.dispatchId
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      startTime: $response.body#/start_time
      endTime: $response.body#/end_time
      modificationNumber: $response.body#/modification_number
  outputs:
    dispatchId: $steps.list-dispatches.outputs.dispatchId
    commitment: $steps.list-dispatches.outputs.commitment
    startTime: $steps.get-dispatch.outputs.startTime
    modificationNumber: $steps.get-dispatch.outputs.modificationNumber

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-poll-dispatches-and-curtail"
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.