# Consent and access rules for customer energy data
A solar installer in Manchester wants six months of a household's half-hourly electricity readings to size a battery system. The data sits with the homeowner's supplier, captured by a smart meter that pings usage every 30 minutes. Should the installer get it? Under what terms? Who checks that consent was real and not just a checkbox clicked in a hurry? This is the daily traffic of energy data governancedata governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.View full definition →, and it is where privacy law meets practical plumbing.
Interval-level consumption data (readings taken every 15, 30, or 60 minutes) reveals far more than a monthly bill ever could. A 30-minute load curve can show when a house is empty, when someone showers, whether an EV is charging at 2am, or if elderly residents are following a stable daily routine.
This granularity is why regulators treat smart meter data as sensitive personal data, not just a billing detail. In the EU and UK, it typically falls under GDPR (General Data Protection Regulation), the core law governing personal data handling. In the US, treatment varies by state since there is no single federal privacy law for energy data.
The UK's Smart Energy Code (SEC) is the rulebook governing who can access data from the country's smart meters, overseen by the SEC Panel and enforced by Ofgem, the energy regulator. It defines strict tiers:
Under SEC, a third party like our Manchester installer must register as a authorized party, present a specific consent request naming the purpose (e.g., "battery sizing"), and get the homeowner to approve it through a recognized consent journey, often via the supplier's app or portal. Consent typically must be renewable and revocable; it is not a lifetime grant.
Reference: Smart Energy Code Company overview is the primary public source for the rules and governance structure.
The US took a different path. Green Button is a voluntary industry initiative (not a binding federal law) that lets utilities offer customers a standardized way to download their own usage data or authorize a third party to receive it automatically.
Two flavors matter:
Because there is no single US federal privacy law for energy data, oversight is fragmented: some states (California via the CPUC, the California Public Utilities Commission) impose binding privacy rules on utilities; others rely on voluntary frameworks and utility-specific tariffs. This is why a Texas utility's data-sharing practice can look nothing like a California one.
Reference: Green Button Alliance documents the technical standard and participating utilities.
When evaluating a real third-party access request, a data governancedata governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.View full definition → team typically works through:
1. Purpose limitation. Is the stated purpose specific ("size a battery," not "improve our services")? GDPR and SEC both require a defined purpose, not a blanket grant.
2. Data minimization. Does the request ask for more than needed? A battery-sizing request needs 6 to 12 months of interval data, not five years of full history.
3. Consent freshness. Is consent still valid, or has it expired / been revoked? SEC and GDPR both expect renewable consent, not indefinite access.
4. Identity verification. Is the third party a registered, authorized party (SEC) or a vetted Green Button data custodian?
5. Audit trail. Is there a timestamped log of who requested what, when consent was given, and what was actually transferred?
Say the installer requests 12 months of half-hourly data. Under SEC's classification, half-hourly data is high-granularity and requires explicit, purpose-bound consent captured through the recognized consent flow, not a general marketing opt-in the homeowner may have signed a year ago.
If the audit log shows the consent was captured 14 months ago for a "smart thermostat installation," that consent does not cover a new battery-sizing request. A compliant governance process would require a fresh consent capture naming the new third party and new purpose. This is the kind of check a data protection officer or compliance analyst runs weekly, not hypothetically.
Governance teams often run simple checks against consent and access logs. A simplified pseudocode check:
-- Flag data transfers where consent is missing, expired, or purpose mismatched
SELECT transfer_id, customer_id, third_party, purpose, transfer_date
FROM data_access_log
WHERE consent_expiry_date < transfer_date
OR consent_purpose <> requested_purpose
OR consent_status = 'revoked';This is not exotic AI. It is a straightforward SQLSQLSales Qualified Lead: a prospect the sales team has validated as ready for direct outreach and a proposal, having passed clear qualification criteria.View full definition → (Structured Query Language, used to query databases) audit that any utility's data governancedata governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.View full definition → function should run regularly, flagged for manual review.
Knowledge check
1. Why do regulators treat half-hourly smart meter data as more sensitive than a monthly bill total?
2. Under the UK's Smart Energy Code, why do suppliers get default access to a customer's full interval data while third parties like installers do not?
3. A comparison website wants to use a customer's daily meter reads to recommend a cheaper tariff. Based on the SEC's tiered granularity model, what should be true before they get this data?
4. Select ALL correct answers about why interval-level energy data raises distinct privacy concerns compared to traditional monthly billing data.
Select all the correct answers.
5. Select ALL correct answers about how energy data privacy is regulated across different regions.
Select all the correct answers.
Beyond the point-of-consent decision, ongoing governance requires:
🎬 [VIDEO: "How Smart Meter Data Privacy Works" - youtube.com/results?search_query=smart+meter+data+privacy+explained - search for recent regulator or utility explainer videos on smart meter data consent and privacy, useful for a visual walkthrough of the consent flow]
Utilities, regulators, and third parties (aggregators, solar installers, demand-response companies) are pulling in different directions. Utilities want liability protection and clean audit trails. Third parties want fast, low-friction access to grow their businesses. Regulators (Ofgem in the UK; state PUCs like the CPUC in the US) are trying to standardize consent without freezing innovation.
This tension is why frameworks like SEC and Green Button keep evolving. As of 2026, expect continued expansion of automated consent (via APIs) alongside stricter granularity-based tiering, especially as EV charging and home battery data become more commercially valuable and more revealing of household behavior.