Con Edison Authorization API

The Authorization API from Con Edison — 3 operation(s) for authorization.

Operations 3

GET /resource/Authorization #
GET /resource/Authorization/{authorizationId} #
POST /oauth/Token #

Documentation

Specifications

Other Resources

🔗
PostmanCollection
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/collections/con-edison-green-button-connect-my-data.postman_collection.json
🔗
PostmanEnvironment
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/collections/con-edison-green-button-connect-my-data.postman_environment.json
🔗
OAuthScopes
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/scopes/con-edison-scopes.yml
🔗
Conventions
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/conventions/con-edison-conventions.yml
🔗
ErrorCatalog
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/errors/con-edison-problem-types.yml
🔗
Lifecycle
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/lifecycle/con-edison-lifecycle.yml
🔗
Conformance
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/conformance/con-edison-conformance.yml
🔗
DataModel
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/data-model/con-edison-data-model.yml
🔗
Webhooks
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/asyncapi/con-edison-batch-notification-webhooks.yml
🔗
Sandbox
https://raw.githubusercontent.com/api-evangelist/con-edison/refs/heads/main/sandbox/con-edison-sandbox.yml
🔗
FAQ
https://www.coned.com/-/media/files/coned/documents/accountandbilling/share-my-data/faq.pdf
🔗
SignUp
https://www.coned.com/en/accounts-billing/share-energy-usage-data/become-a-third-party/registration-form
🔗
Standard
https://www.naesb.org/espi_standards.asp
🔗
Standard
https://www.greenbuttonalliance.org/green-button-connect-my-data-cmd

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/con-edison-authorization-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

con-edison-authorization-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: DCX GBC API V2 Authorization API
  description: 'The Green Button Connect API provides an access to RESTful services provided by ConEdison and Third Party Applications. These APIs allow application developers full access, in Green Button Format, to Energy Usage Information for the purpose of developing new Green Button Applications.Access to Green Button APIs requires an OAuth2 Access Token. Insert Access Tokens in the field labelled ''Access Token: '' at the top of the page prior to selecting the ''Try It Out!'' button:'
servers:
- url: https://provided-by-coned/gbc/espi/1_1
tags:
- name: Authorization
paths:
  /resource/Authorization:
    get:
      tags:
      - Authorization
      operationId: Get all Third Party Authorizations
      parameters:
      - name: publishedMax
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: publishedMin
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: updatedMax
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: updatedMin
        in: query
        required: false
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: OK
        '400':
          description: BadRequest
        '401':
          description: Unauthorized
      servers:
      - url: https://provided-by-coned/gbc/espi/1_1
  /resource/Authorization/{authorizationId}:
    get:
      tags:
      - Authorization
      operationId: Get Third Party Authorization by ID
      parameters:
      - name: authorizationId
        in: path
        required: true
        schema:
          type: string
      - name: publishedMax
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: publishedMin
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: updatedMax
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: updatedMin
        in: query
        required: false
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: OK
        '400':
          description: BadRequest
        '401':
          description: Unauthorized
      servers:
      - url: https://provided-by-coned/gbc/espi/1_1
  /oauth/Token:
    post:
      tags:
      - Authorization
      operationId: Token
      responses:
        '200':
          description: OK
        '400':
          description: BadRequest
      servers:
      - url: https://provided-by-coned/gbc/espi/1_1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TokenRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/TokenRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/TokenRequest'
          text/xml:
            schema:
              $ref: '#/components/schemas/TokenRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/TokenRequest'
          application/atom+xml:
            schema:
              $ref: '#/components/schemas/TokenRequest'
        required: true
components:
  schemas:
    TokenRequest:
      type: object
      properties:
        clientId:
          type: string
        clientSecret:
          type: string
        redirect_uri:
          type: string
        scope:
          type: string
        code:
          type: string
        grant_type:
          type: string
        refresh_token:
          type: string