
Teleport
Real-time cloud control of energy assets
Connects to any asset
The Teleport connects to assets like inverters, batteries, charging stations and heat pumps.
Adheres to standards
Supports read-out and control over RS232, RS485, Ethernet, through protocols like Modbus, OCPP and SunSpec.
Is secure by default
Teleport establishes outbound connections only. All communication is encrypted. ISO27001 certified.
Offers standardized control
A single JSON REST API to control all asset types
Responds in real-time
Response times between cloud and asset < 1 second
Integrates with your systems
Can forward messages to destinations like your own database (eg. MySQL, Postgres, Influx), message broker (eg. Kafka) or webhook.
Your assets at your fingertips
# Tell inverter to limit power production to 40% for 15 minutes
curl -X PUT https://api.teleport.withthegrid.com/v1/schedule \
-H 'authorization:Bearer [token]' \
-d '{
"schedule": [{
"type": "limitProductionPower",
"percentage": 40,
"startAt": "2022-06-01T00:00:00Z",
"endAt": "2022-06-01T00:15:00Z"
}],
"deviceHashIds": ["8de4y2"]
}'