Arcadia Intervals API

Time-series consumption data, typically 15-minute resolution.

Operations 2

GET /plug/intervals/meters/{meterId} List Intervals for a Meter #
GET /plug/intervals/meters/{meterId}/normalized List Normalized Intervals for a Meter #

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/arcadia-power-intervals-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

arcadia-power-intervals-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arcadia Plug Accounts Intervals API
  version: '2024-02-21'
  description: 'The Arcadia Plug API is the primary developer surface of the Arc utility data platform.

    It provides programmatic access to utility accounts, statements (bills), meters,

    interval (15-minute) usage data, providers, sites, files, and webhooks. Authentication

    uses OAuth 2.0 client credentials; an Arcadia-Version header pins request behavior to

    a dated API revision (default 2024-02-21). Sandbox mode is available end-to-end.

    '
  contact:
    name: Arcadia API Support
    url: https://docs.arcadia.com
  license:
    name: Arcadia API Terms
    url: https://www.arcadia.com/terms-of-service
servers:
- url: https://api.arcadia.com
  description: Production
tags:
- name: Intervals
  description: Time-series consumption data, typically 15-minute resolution.
paths:
  /plug/intervals/meters/{meterId}:
    get:
      tags:
      - Intervals
      summary: List Intervals for a Meter
      operationId: listIntervalsForMeter
      description: 'Retrieves utility-provided interval data for an electric meter. Returns up to

        one year of historical data within the requested startAt/endAt range.

        '
      parameters:
      - $ref: '#/components/parameters/ArcadiaVersion'
      - in: path
        name: meterId
        required: true
        schema:
          type: string
      - in: query
        name: startAt
        schema:
          type: string
          format: date-time
      - in: query
        name: endAt
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: Interval data series.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntervalSeries'
      security:
      - bearerAuth: []
  /plug/intervals/meters/{meterId}/normalized:
    get:
      tags:
      - Intervals
      summary: List Normalized Intervals for a Meter
      operationId: listNormalizedIntervalsForMeter
      parameters:
      - $ref: '#/components/parameters/ArcadiaVersion'
      - in: path
        name: meterId
        required: true
        schema:
          type: string
      - in: query
        name: startAt
        schema:
          type: string
          format: date-time
      - in: query
        name: endAt
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: Normalized interval data series.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntervalSeries'
      security:
      - bearerAuth: []
components:
  schemas:
    IntervalSeries:
      type: object
      properties:
        meterId:
          type: string
        startAt:
          type: string
          format: date-time
        endAt:
          type: string
          format: date-time
        resolutionMinutes:
          type: integer
          example: 15
        readings:
          type: array
          items:
            $ref: '#/components/schemas/IntervalReading'
    IntervalReading:
      type: object
      properties:
        startAt:
          type: string
          format: date-time
        endAt:
          type: string
          format: date-time
        value:
          type: number
          description: Usage value for the interval.
        unit:
          type: string
          example: kWh
        direction:
          type: string
          enum:
          - DELIVERED
          - RECEIVED
  parameters:
    ArcadiaVersion:
      in: header
      name: Arcadia-Version
      required: false
      schema:
        type: string
        default: '2024-02-21'
      description: Date-pinned API version.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT