Tibber · Arazzo Workflow

Tibber Submit Meter Reading

Version 1.0.0

Discover the viewer's home over GraphQL, then submit a manual meter reading for that home with the sendMeterReading mutation.

1 workflow 1 source API 1 provider
View Spec View on GitHub EnergySmart HomeSmart MeterElectricityPricingElectric Vehicle ChargingHeatPumpSolarInverterHome BatteryGraphQLAuthenticationNordicArazzoWorkflows

Provider

tibber

Workflows

submit-meter-reading
Resolve a home and submit a manual meter reading for it.
Runs a viewer/homes discovery query to capture a home id, then runs the sendMeterReading mutation to register a manual reading value against that home.
2 steps inputs: accessToken, reading outputs: homeId, result
1
discoverHomes
Resolve the authenticated viewer and the list of homes, capturing the first home id to register the reading against.
2
sendReading
Submit the manual meter reading for the resolved home using the sendMeterReading mutation, passing the home id and reading as variables.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Tibber Submit Meter Reading
  summary: Discover the viewer's home over GraphQL, then submit a manual meter reading for that home with the sendMeterReading mutation.
  description: >-
    Two chained GraphQL operations against Tibber's legacy /gql endpoint. The
    first resolves the authenticated viewer and the list of homes, capturing a
    home id; the second submits a manual meter reading for that home using the
    sendMeterReading mutation with the home id and the reading value supplied as
    GraphQL variables. Because the GraphQL API exposes a single POST operation,
    every step reuses the executeGraphQL operation with a distinct documented
    payload. Each step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: graphqlApi
  url: ../openapi/tibber-graphql-api-openapi.yml
  type: openapi
workflows:
- workflowId: submit-meter-reading
  summary: Resolve a home and submit a manual meter reading for it.
  description: >-
    Runs a viewer/homes discovery query to capture a home id, then runs the
    sendMeterReading mutation to register a manual reading value against that
    home.
  inputs:
    type: object
    required:
    - accessToken
    - reading
    properties:
      accessToken:
        type: string
        description: Tibber personal access token (bearer) issued at developer.tibber.com.
      reading:
        type: integer
        description: The meter reading value to register for the home.
  steps:
  - stepId: discoverHomes
    description: >-
      Resolve the authenticated viewer and the list of homes, capturing the
      first home id to register the reading against.
    operationId: executeGraphQL
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    requestBody:
      contentType: application/json
      payload:
        query: "{ viewer { homes { id appNickname } } }"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      homeId: $response.body#/data/viewer/homes/0/id
  - stepId: sendReading
    description: >-
      Submit the manual meter reading for the resolved home using the
      sendMeterReading mutation, passing the home id and reading as variables.
    operationId: executeGraphQL
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    requestBody:
      contentType: application/json
      payload:
        query: "mutation SendMeterReading($homeId: ID!, $reading: Int!) { sendMeterReading(input: { homeId: $homeId, reading: $reading }) { reading } }"
        variables:
          homeId: $steps.discoverHomes.outputs.homeId
          reading: $inputs.reading
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      result: $response.body#/data/sendMeterReading
  outputs:
    homeId: $steps.discoverHomes.outputs.homeId
    result: $steps.sendReading.outputs.result

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/tibber-submit-meter-reading-workflow"
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.