Reach It
- Method:
GET - Path:
/api/network - Base URL:
http://openhaldex.local(or controller IP) - Response format:
JSON
API Endpoint
Returns live AP/STA connectivity and IPs.
GET/api/networkhttp://openhaldex.local (or controller IP)JSONNone
None
Receive: JSON: staConnected, staIp, ap, apIp, hostname, internet.
Parse: IPs can be empty strings when disconnected.
200 success
curl -s "http://openhaldex.local/api/network"
This section is intentionally unique for GET /api/network. Focus area:
live link-state diagnostics for AP/STA connectivity. When integrating OpenHaldex at scale, this endpoint should be treated as a dedicated
workflow step rather than a generic HTTP action.
Operational scenario: Use this route during connection troubleshooting to distinguish credential issues from link-state issues.
Domain vocabulary: ip-address, sta-connected, ap-active, link-state, dhcp-result, hostname-resolution, network-health, connectivity-snapshot, signal-path, reachability.
GET /api/network and capture status code + raw response./api/status) to verify runtime convergence.const net = await fetch('/api/network').then(r=>r.json());
Unique endpoint guidance like this helps prevent duplicate-content clustering while remaining genuinely useful for developers working on OpenHaldex integrations for haldex controller, VW AWD controller, and Audi AWD controller environments.
Preview the real OpenHaldex firmware UI in your browser with simulated live CAN traffic and interactive pages for tuning, diagnostics, logs, setup, and OTA workflows.