Skip to main content

Sandbox Public Credentials

The Sandbox environment can supply static example API responses for each endpoint with public credentials.

To access static example API responses:

  1. Set your host to https://sandbox.voltus.co.
  2. Set the request header X-Voltus-API-Key: secret.

For live dispatch simulations with your Voltus-provided sandbox key, see Sandbox Dispatch Simulation Environment.

GET Dispatches

Retrieve a static list of dispatches.

GET Sites

Retrieve a static list of sites.

GET/POST Telemetry

Use the Voltus Sandbox API (https://sandbox.voltus.co/) and sandbox sample credentials (API key = secret) to send or get telemetry data (aka energy usage data, interval data, or controllable load). When you hit POST or GET telemetry in the sandbox, the endpoint will respond with 200 OK but it will not save the telemetry data.

For example:

curl -H "X-Voltus-API-Key: secret" -X POST https://sandbox.voltus.co/2022-04-15/telemetry/controllable-load --data '{"controllable_load": [{"interval_seconds": 30, "site_id": "yd4g", "timestamp": "2024-01-02T09:00:00Z", "units": "kW", "value": 0.2}]}'