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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/solar-edge-environmental-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
openapi: 3.2.0
info:
title: Solar Edge Environmental API
version: 1.0.0
contact:
name: SolarEdge Developer Support
url: https://developers.solaredge.com
license:
name: Proprietary
url: https://www.solaredge.com/us/commercial/developer
x-api-id: solar-edge:solar-edge-monitoring-api
description: 'Operations tagged Environmental across 2 of this provider''s published API definitions: openapi.yml, solar-edge-monitoring-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://monitoringapi.solaredge.com
description: SolarEdge Monitoring API production server
security:
- ApiKeyQuery: []
tags:
- name: Environmental
description: Environmental benefit metrics
paths:
/site/{siteId}/envBenefits:
get:
operationId: getSiteEnvironmentalBenefits
summary: Get Environmental Benefits
description: Returns environmental benefit metrics for the site including CO2 savings, trees planted equivalent, and light bulbs equivalent based on energy production.
tags:
- Environmental
parameters:
- $ref: '#/components/parameters/siteId'
- name: systemUnits
in: query
description: Unit system for environmental metrics
schema:
type: string
enum:
- Metrics
- Imperial
responses:
'200':
description: Environmental benefit metrics
content:
application/json:
schema:
$ref: '#/components/schemas/EnvironmentalBenefitsResponse'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
servers:
- url: https://monitoringapi.solaredge.com
description: SolarEdge Monitoring API production server
components:
parameters:
siteId:
name: siteId
in: path
required: true
description: Unique numeric identifier for the site. Supports comma-separated values for bulk requests (up to 100 site IDs).
schema:
type: string
example: '12345'
schemas:
EnvironmentalBenefitsResponse:
type: object
properties:
envBenefits:
type: object
properties:
unit:
type: string
description: Weight unit (e.g., kg, lb)
gasEmissionSaved:
type: object
properties:
units:
type: string
co2:
type: number
format: float
description: CO2 emissions saved
so2:
type: number
format: float
description: SO2 emissions saved
nox:
type: number
format: float
description: NOx emissions saved
treesPlanted:
type: number
format: float
description: Number of trees planted equivalent
lightBulbs:
type: number
format: float
description: Number of light bulbs lit for a day equivalent
ErrorResponse:
type: object
properties:
code:
type: integer
description: HTTP status code
message:
type: string
description: Human-readable error message
responses:
Unauthorized:
description: Missing or invalid API key
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
NotFound:
description: Site or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
securitySchemes:
ApiKeyQuery:
type: apiKey
in: query
name: api_key
description: API key generated through the SolarEdge monitoring portal
x-refined-from:
- openapi.yml
- solar-edge-monitoring-api-openapi.yml