UtilityAPI Meters API

Utility services and meter data for authorized customers

Operations 5

GET /meters List Meters #
GET /meters/{uid} Get Meter #
PUT /meters/{uid} Modify Meter #
POST /meters/{uid}/collect Collect Meter Data #
POST /meters/{uid}/monitor Monitor Meter Data #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/utilityapi-meters-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

utilityapi-meters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Utility Accounting Meters API
  description: UtilityAPI provides a REST API for collecting, standardizing, and sharing utility data including meters, bills, intervals, authorizations, and webhook events. Supports the Green Button standard for energy data sharing.
  version: '2'
  contact:
    name: UtilityAPI Support
    url: https://utilityapi.com/contact
  termsOfService: https://utilityapi.com/terms
servers:
- url: https://utilityapi.com/api/v2
  description: UtilityAPI Production Server
security:
- bearerAuth: []
tags:
- name: Meters
  description: Utility services and meter data for authorized customers
paths:
  /meters:
    get:
      operationId: listMeters
      summary: List Meters
      description: List all utility meters for authorized customers.
      tags:
      - Meters
      parameters:
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 100
      - name: next
        in: query
        required: false
        schema:
          type: string
      - name: authorization_uid
        in: query
        description: Filter meters by authorization UID
        required: false
        schema:
          type: string
      responses:
        '200':
          description: List of meters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeterList'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /meters/{uid}:
    get:
      operationId: getMeter
      summary: Get Meter
      description: Retrieve a specific utility meter by UID.
      tags:
      - Meters
      parameters:
      - $ref: '#/components/parameters/uid'
      responses:
        '200':
          description: Meter details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Meter'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      operationId: modifyMeter
      summary: Modify Meter
      description: Update metadata on a meter.
      tags:
      - Meters
      parameters:
      - $ref: '#/components/parameters/uid'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MeterUpdate'
      responses:
        '200':
          description: Updated meter
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Meter'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /meters/{uid}/collect:
    post:
      operationId: collectMeterData
      summary: Collect Meter Data
      description: Trigger data collection for a utility meter.
      tags:
      - Meters
      parameters:
      - $ref: '#/components/parameters/uid'
      responses:
        '200':
          description: Collection initiated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeterCollect'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /meters/{uid}/monitor:
    post:
      operationId: monitorMeterData
      summary: Monitor Meter Data
      description: Enable ongoing monitoring for a utility meter to receive automatic data updates.
      tags:
      - Meters
      parameters:
      - $ref: '#/components/parameters/uid'
      responses:
        '200':
          description: Monitoring enabled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeterMonitor'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  responses:
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing or invalid authentication token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    MeterList:
      type: object
      properties:
        meters:
          type: array
          items:
            $ref: '#/components/schemas/Meter'
        next:
          type: string
    MeterUpdate:
      type: object
      properties:
        metadata:
          type: object
    MeterMonitor:
      type: object
      properties:
        uid:
          type: string
        monitoring:
          type: boolean
        message:
          type: string
    Meter:
      type: object
      properties:
        uid:
          type: string
        authorization_uid:
          type: string
        utility:
          type: string
        service_address:
          type: string
        meter_number:
          type: string
        service_class:
          type: string
          enum:
          - ELECTRIC
          - GAS
          - WATER
        status:
          type: string
        created:
          type: string
          format: date-time
        modified:
          type: string
          format: date-time
    MeterCollect:
      type: object
      properties:
        uid:
          type: string
        status:
          type: string
        message:
          type: string
    Error:
      type: object
      properties:
        errors:
          type: array
          items:
            type: string
        status:
          type: string
  parameters:
    uid:
      name: uid
      in: path
      required: true
      description: Unique identifier of the resource
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token from the UtilityAPI dashboard
externalDocs:
  description: UtilityAPI Documentation
  url: https://utilityapi.com/docs