AESO · Arazzo Workflow

AESO asset drilldown

Version 1.0.0

Resolve a pool participant into its fleet, read what those assets are generating right now, and pull their settlement-grade metered volumes.

1 workflow 4 source APIs 1 provider
View Spec View on GitHub EnergyCanadaAlbertaElectricityEnergy MarketsGridSystem OperatorMarket OperatorOpen Energy DataWholesale PowerDemand ResponseRenewablesUtilitiesArazzoWorkflows

Provider

aeso

Workflows

aeso-asset-drilldown
Participant registry to asset registry to live generation to metered volumes.
Walks AESO's two reference registries into its operational feeds using the shared join keys pool_participant_ID and asset_ID. Requires a free API-KEY subscription key.
4 steps inputs: endDate, poolParticipantId, startDate outputs: assets, generation, meteredVolumes, participant
1
resolve-participant
Confirm the participant exists and pick up its name.
2
list-participant-assets
Every market asset registered to that participant.
3
read-current-generation
Current output for the generating assets on the system, to be filtered to the fleet resolved above.
4
read-metered-volumes
Settlement-grade metered volumes for the participant over the requested range.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: AESO asset drilldown
  summary: Resolve a pool participant into its fleet, read what those assets are generating right now,
    and pull their settlement-grade metered volumes.
  version: 1.0.0
sourceDescriptions:
- name: poolparticipant
  url: ../openapi/_original/aeso-poolparticipant-api-v1-openapi.json
  type: openapi
- name: assetlist
  url: ../openapi/_original/aeso-assetlist-api-v1-openapi.json
  type: openapi
- name: currentsupplydemand-v1
  url: ../openapi/_original/aeso-currentsupplydemand-api-v1-openapi.json
  type: openapi
- name: meteredvolume
  url: ../openapi/_original/aeso-meteredvolume-api-v1-openapi.json
  type: openapi
workflows:
- workflowId: aeso-asset-drilldown
  summary: Participant registry to asset registry to live generation to metered volumes.
  description: >-
    Walks AESO's two reference registries into its operational feeds using the shared join keys
    pool_participant_ID and asset_ID. Requires a free API-KEY subscription key.
  inputs:
    type: object
    required:
    - poolParticipantId
    - startDate
    properties:
      poolParticipantId:
        type: string
        description: A pool participant identifier from the Pool Participant API.
      startDate:
        type: string
        description: First settlement day for the metered volume pull, in yyyy-MM-dd.
        example: '2026-07-01'
      endDate:
        type: string
        description: Optional last settlement day for the metered volume pull, in yyyy-MM-dd.
        example: '2026-07-27'
  steps:
  - stepId: resolve-participant
    description: Confirm the participant exists and pick up its name.
    operationId: getPoolParticipantListData
    parameters:
    - name: pool_participant_ID
      in: query
      value: $inputs.poolParticipantId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      participant: $response.body
  - stepId: list-participant-assets
    description: Every market asset registered to that participant.
    operationId: getAssetListData
    parameters:
    - name: pool_participant_ID
      in: query
      value: $inputs.poolParticipantId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assets: $response.body
  - stepId: read-current-generation
    description: Current output for the generating assets on the system, to be filtered to the fleet
      resolved above.
    operationId: getCSDReportByAsset
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      generation: $response.body
  - stepId: read-metered-volumes
    description: Settlement-grade metered volumes for the participant over the requested range.
    operationId: getMeteredVolumeReport
    parameters:
    - name: startDate
      in: query
      value: $inputs.startDate
    - name: endDate
      in: query
      value: $inputs.endDate
    - name: pool_participant_ID
      in: query
      value: $inputs.poolParticipantId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      meteredVolumes: $response.body
  outputs:
    participant: $steps.resolve-participant.outputs.participant
    assets: $steps.list-participant-assets.outputs.assets
    generation: $steps.read-current-generation.outputs.generation
    meteredVolumes: $steps.read-metered-volumes.outputs.meteredVolumes

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/aeso-asset-drilldown"
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.