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
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 */}