Skip to main content
GET
/
inverters
List Inverters
curl --request GET \
  --url https://api.example.com/inverters

GET /inverters

Returns all inverters belonging to the authenticated workspace. Use this to populate equipment selection dropdowns or to audit the inverter library before running an energy model.

Notes

  • Requires a valid JWT with read access to the workspace.
  • Returns an array of InverterResponse objects, each containing the inverter’s parsed properties and optional efficiency curve data.
  • Inverters are workspace-scoped; you will only see inverters created within the current workspace.
  • To retrieve a single inverter by ID, use GET /inverters/{inverter_id}.
  • To add inverters, use POST /inverters (file upload) or POST /inverters/json (JSON body).