Tank Utility · Arazzo Workflow

Tank Utility — read propane tank level

Version 1.0.0

Authenticate to the Tank Utility API, list the propane monitors on the account, and read the latest reading (fuel level %, temperature) for the first device.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub PropaneTank MonitoringIoTFuel DeliveryTelemetryEnergySensorsCompanyArazzoWorkflows

Provider

tank-utility

Workflows

readTankLevel
Get a token, list devices, and read the first device's latest reading.
Exchanges account credentials for a token, lists device IDs, then reads the first device's telemetry.
3 steps inputs: password, username outputs: device
1
getToken
Exchange Basic-auth credentials for a short-lived API token.
2
listDevices
List the device IDs on the account.
3
readDevice
Read the first device's latest reading.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Tank Utility — read propane tank level
  version: 1.0.0
  description: >-
    Authenticate to the Tank Utility API, list the propane monitors on the
    account, and read the latest reading (fuel level %, temperature) for the
    first device.
sourceDescriptions:
- name: authenticationApi
  url: ../openapi/tank-utility-authentication-api-openapi.yml
  type: openapi
- name: devicesApi
  url: ../openapi/tank-utility-devices-api-openapi.yml
  type: openapi
workflows:
- workflowId: readTankLevel
  summary: Get a token, list devices, and read the first device's latest reading.
  description: >-
    Exchanges account credentials for a token, lists device IDs, then reads
    the first device's telemetry.
  inputs:
    type: object
    required: [username, password]
    properties:
      username:
        type: string
        description: Tank Utility account email.
      password:
        type: string
        description: Tank Utility account password.
  steps:
  - stepId: getToken
    description: Exchange Basic-auth credentials for a short-lived API token.
    operationId: getToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      token: $response.body#/token
  - stepId: listDevices
    description: List the device IDs on the account.
    operationId: getDevices
    parameters:
    - name: token
      in: query
      value: $steps.getToken.outputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      devices: $response.body#/devices
      firstDevice: $response.body#/devices/0
  - stepId: readDevice
    description: Read the first device's latest reading.
    operationId: getDevice
    parameters:
    - name: deviceId
      in: path
      value: $steps.listDevices.outputs.firstDevice
    - name: token
      in: query
      value: $steps.getToken.outputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      device: $response.body#/device
  outputs:
    device: $steps.readDevice.outputs.device

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/tank-utility-read-tank-level"
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.