Developer Portal

API Documentation and Integration Tools

API Documentation
SDK Downloads
Test Sandbox

Energy API v1.2

Base Endpoint

https://api.faucetsolution.com.tw/v1/energy

Request Example

// Get device energy usage data GET /v1/energy/usage?device_id={device_id} Headers: Authorization: Bearer {api_key}
Download Full Documentation

SDK Downloads

Python SDK

Version: 1.2.0 | Updated: 2025-07-15

Download

Node.js SDK

Version: 1.1.5 | Updated: 2025-06-20

Download

Java SDK

Version: 1.0.3 | Updated: 2025-05-10

Download

Installation Example (Python)

pip install faucet-energy-sdk from faucet_energy import EnergyClient client = EnergyClient(api_key="YOUR_API_KEY") usage = client.get_energy_usage(device_id="EMS-001")

API Test Sandbox

{ "device_id": "EMS-001", "start_date": "2025-07-01", "end_date": "2025-07-31" }
{/* Response will appear here */}