{"id":15412270,"url":"https://github.com/robthree/nenvoy","last_synced_at":"2026-02-18T13:36:10.492Z","repository":{"id":166107009,"uuid":"641526952","full_name":"RobThree/NEnvoy","owner":"RobThree","description":".Net Enphase Envoy client library","archived":false,"fork":false,"pushed_at":"2024-03-07T15:38:22.000Z","size":318,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-29T07:22:06.229Z","etag":null,"topics":["api-client","enphase","enphase-api","envoy","envoy-api"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RobThree.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["RobThree"],"custom":["https://paypal.me/robiii"]}},"created_at":"2023-05-16T16:50:40.000Z","updated_at":"2025-03-13T07:30:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"a37cafaf-3e44-4446-8e86-02c2a8ba4c2a","html_url":"https://github.com/RobThree/NEnvoy","commit_stats":{"total_commits":51,"total_committers":2,"mean_commits":25.5,"dds":"0.039215686274509776","last_synced_commit":"fa2ff7c3e9a4b55c603bcfea7144592a87ef1588"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobThree%2FNEnvoy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobThree%2FNEnvoy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobThree%2FNEnvoy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobThree%2FNEnvoy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobThree","download_url":"https://codeload.github.com/RobThree/NEnvoy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249685183,"owners_count":21310562,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-client","enphase","enphase-api","envoy","envoy-api"],"created_at":"2024-10-01T16:52:02.718Z","updated_at":"2026-02-18T13:36:05.433Z","avatar_url":"https://github.com/RobThree.png","language":"C#","readme":"# ![Logo](https://raw.githubusercontent.com/RobThree/NEnvoy/master/logo.png) NEnvoy\n\n![Build Status](https://img.shields.io/github/actions/workflow/status/RobThree/NEnvoy/test.yml?branch=master\u0026style=flat-square) [![Nuget version](https://img.shields.io/nuget/v/NEnvoy.svg?style=flat-square)](https://www.nuget.org/packages/NEnvoy/)\n\n\nA .Net Enphase Envoy client available as a [NuGet package](https://www.nuget.org/packages/NEnvoy).\n\nCurrently a work in progress. The list of currently implemented (and not yet implemented) items can be found [here](TODO.md).\n\n## Quickstart\n\n```c#\n// Create client and login (assumes \"envoy\" hostname)\nvar ci = new EnvoyConnectionInfo\n{\n\tUsername = \"user@gmail.com\",\n\tPassword = \"sup3rs3cet\",\n};\nvar client = await EnvoyClient.FromLoginAsync(ci).ConfigureAwait(false);\n\n// Get information from Envoy\nvar deviceinfo = await client.GetEnvoyInfoAsync();\n```\n\n### Sessions\n\nA login is slow; once a session has been set up (logged in successfully) you can obtain the token and save it for later use:\n\n```c#\nvar token = client.GetToken();\n// Save the token to a file/database/whatever\n```\n\nYou can then create client from the token:\n\n```c#\nvar client = EnvoyClient.FromToken(token, ci);\n```\n\n### Connection\n\nYou can specify a different hostname or IP address for your Envoy:\n\n```c#\nvar ci = new ConnectionInfo(\"user@gmail.com\", \"sup3rs3cet\", \"envoy.local\");\n// or:\nvar ci = new ConnectionInfo(\"user@gmail.com\", \"sup3rs3cet\", \"192.168.123.45\");\n```\n\nSimilarly, the base URI's for the enphase portal can be overridden:\n\n```c#\nvar ci = new ConnectionInfo(\"user@gmail.com\", \"sup3rs3cet\", EnphaseBaseUri: \"https://enlighten-new.enphaseenergy.com\");\n// or:\nvar ci = new ConnectionInfo(\"user@gmail.com\", \"sup3rs3cet\", EnphaseEntrezBaseUri: \"https://entrez-new.enphaseenergy.com\");\n```\n\n## Contributing\n\nYes please! Implement any of the methods and make a PR and we'll take it from there.\n\n## License\n\nLicensed under MIT license. See [LICENSE](LICENSE) for details.\n\n---\n\nIcon made by [Payungkead](https://www.flaticon.com/authors/payungkead) from [www.flaticon.com](http://www.flaticon.com/) is licensed by [CC 3.0](http://creativecommons.org/licenses/by/3.0/).","funding_links":["https://github.com/sponsors/RobThree","https://paypal.me/robiii"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobthree%2Fnenvoy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobthree%2Fnenvoy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobthree%2Fnenvoy/lists"}