Enphase Energy Grid Profiles API

The Grid Profiles API from Enphase Energy — 1 operation(s) for grid profiles.

Operations 1

GET /api/v4/partner/grid_profiles Lists the available profiles

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/enphase-grid-profiles-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

enphase-grid-profiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Commissioning Grid Profiles API
  version: v4
servers:
- url: https://api.enphaseenergy.com
tags:
- name: Grid Profiles
paths:
  /api/v4/partner/grid_profiles:
    get:
      summary: Lists the available profiles
      description: Lists the available profiles.
      tags:
      - Grid Profiles
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  grid_profiles:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Grid profile ID. System-generated
                        profile_id:
                          type: string
                          description: ''
                        created:
                          type: string
                          description: Profile created date and time
                        updated:
                          type: string
                          description: Profile last updated date and time
                        name:
                          type: string
                          description: Profile name
                        description:
                          type: string
                          description: Profile description
                        version:
                          type: string
                          description: Profile version
                        envoy_type:
                          type: string
                          description: Envoy type
                        countries:
                          type: array
                          items:
                            type: string
                          description: Name of the Countries
                        states:
                          type: array
                          items:
                            type: string
                          description: States code
                        state_names:
                          type: array
                          items:
                            type: string
                          description: Name of the states
                        ensemble_1_compatible:
                          type: boolean
                          description: ''
              example:
                grid_profiles:
                - id: 9d9e749bf64f462fb8b2aac1
                  profile_id: agf:5f2299d9f22aad4ae0e15bfd
                  created: '2017-05-23T17:46:46Z'
                  updated: '2017-05-23T17:46:46Z'
                  name: Profile Name
                  description: Profile Description
                  version: 1.0.1
                  envoy_type: north_america
                  countries:
                  - US
                  states:
                  - HI
                  state_names:
                  - Hawaii
                  ensemble_1_compatible: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  reason:
                    type: string
                  message:
                    type: array
                    items:
                      type: string
              example:
                reason: '401'
                message:
                - Not authorized to access requested resource.
                - API Key missing in url/headers!
        '404':
          description: Not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  reason:
                    type: string
                  message:
                    type: array
                    items:
                      type: string
              example:
                reason: '404'
                message:
                - Partner company missing
        '405':
          description: Method Not Allowed
          content:
            application/json:
              schema:
                type: object
                properties:
                  reason:
                    type: string
                  message:
                    type: array
                    items:
                      type: string
              example:
                reason: '405'
                message:
                - Method not allowed
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                type: object
                properties:
                  reason:
                    type: string
                    description: Response code
                  message:
                    type: array
                    items:
                      type: string
                      description: Error Messages
              example:
                reason: '429'
                message:
                - Usage limit exceeded for plan Partner (custom)
        '501':
          description: Not Implemented
          content:
            application/json:
              schema:
                type: object
                properties:
                  reason:
                    type: string
                  message:
                    type: array
                    items:
                      type: string
              example:
                reason: '501'
                message:
                - Not Implemented