The comgy api allows access to almost all components of our services. It's fully documented here:
https://api.comgy.io/api-docs/index.html?urls.primaryName=PUBLIC API v0
The API follows the JSON:API spec (https://jsonapi.org/). For recommended libraries, see below
If you don't have an Account Master Token yet, reach out to alwin.kobelt@comgy.io. The token is a JSON-Web-Token (JWT) with life-long duration.
As per the JSON:API spec all requests need to have the following headers:
Example Request for all meters
curl --request GET \\
--url '<https://api.comgy.io/public/v0/meters/>' \\
--header 'accept: application/vnd.api+json' \\
--header 'authorization: Bearer JWT_TOKEN' \\
--header 'origin: <https://api.comgy.io>'