// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License #pragma once #include struct ApiResult { bool success = false; String body; int httpCode = -1; }; ApiResult httpGet(const String &url, uint32_t timeoutMs = 5000);