WEC Energy Group · Schema
WEC Energy Group Energy Usage Data
JSON Schema for energy usage data records from WEC Energy Group utilities (We Energies, Wisconsin Public Service, Peoples Gas). Aligns with the Green Button / ESPI standard for customer energy usage information.
EnergyElectric UtilityFortune 500Green ButtonIllinoisMichiganMinnesotaNatural GasNYSEUtilityWisconsin
Properties
| Name | Type | Description |
|---|---|---|
| accountNumber | string | WEC Energy Group customer account number |
| utility | string | The WEC Energy Group subsidiary utility serving this account |
| serviceType | string | Type of energy service |
| serviceAddress | object | Service address for this account |
| billingPeriodStart | string | Start date of the billing period |
| billingPeriodEnd | string | End date of the billing period |
| usageReadings | array | Array of interval energy usage readings |
| totalUsage | number | Total energy usage for the billing period |
| unit | string | Unit of measurement for total usage |
| peakDemand | number | Peak demand in kW (for electric service, demand rate customers) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/wec-energy/json-schema/wec-energy-usage-schema.json",
"title": "WEC Energy Group Energy Usage Data",
"description": "JSON Schema for energy usage data records from WEC Energy Group utilities (We Energies, Wisconsin Public Service, Peoples Gas). Aligns with the Green Button / ESPI standard for customer energy usage information.",
"type": "object",
"properties": {
"accountNumber": {
"type": "string",
"description": "WEC Energy Group customer account number"
},
"utility": {
"type": "string",
"enum": ["We Energies", "Wisconsin Public Service", "Peoples Gas", "North Shore Gas", "Minnesota Energy Resources", "Michigan Gas Utilities", "Upper Michigan Energy Resources"],
"description": "The WEC Energy Group subsidiary utility serving this account"
},
"serviceType": {
"type": "string",
"enum": ["Electric", "Natural Gas"],
"description": "Type of energy service"
},
"serviceAddress": {
"type": "object",
"description": "Service address for this account",
"properties": {
"street": {"type": "string"},
"city": {"type": "string"},
"state": {
"type": "string",
"enum": ["WI", "IL", "MN", "MI"]
},
"zip": {"type": "string", "pattern": "^\\d{5}(-\\d{4})?$"}
}
},
"billingPeriodStart": {
"type": "string",
"format": "date",
"description": "Start date of the billing period"
},
"billingPeriodEnd": {
"type": "string",
"format": "date",
"description": "End date of the billing period"
},
"usageReadings": {
"type": "array",
"description": "Array of interval energy usage readings",
"items": {
"type": "object",
"properties": {
"timestamp": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the usage reading"
},
"duration": {
"type": "integer",
"description": "Duration of the interval in seconds (e.g., 3600 for hourly)"
},
"value": {
"type": "number",
"description": "Energy consumption value"
},
"unit": {
"type": "string",
"enum": ["kWh", "therms", "CCF"],
"description": "Unit of measurement"
},
"quality": {
"type": "string",
"enum": ["valid", "estimated", "missing"],
"description": "Data quality indicator"
}
},
"required": ["timestamp", "value", "unit"]
}
},
"totalUsage": {
"type": "number",
"description": "Total energy usage for the billing period"
},
"unit": {
"type": "string",
"enum": ["kWh", "therms", "CCF"],
"description": "Unit of measurement for total usage"
},
"peakDemand": {
"type": "number",
"description": "Peak demand in kW (for electric service, demand rate customers)"
}
},
"required": ["accountNumber", "utility", "serviceType", "billingPeriodStart", "billingPeriodEnd", "totalUsage", "unit"]
}
Work with this as data
Every JSON Schema 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 schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema 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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/wec-energy-usage"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.