diff --git a/src/ExchangeSharp/API/Common/BaseAPI.cs b/src/ExchangeSharp/API/Common/BaseAPI.cs index 3715bb76..f9cc983b 100644 --- a/src/ExchangeSharp/API/Common/BaseAPI.cs +++ b/src/ExchangeSharp/API/Common/BaseAPI.cs @@ -528,7 +528,7 @@ public void LoadAPIKeysUnsecure(string publicApiKey, string privateApiKey, strin T jsonResult = JsonConvert.DeserializeObject(result.Response, SerializerSettings); if (jsonResult is JToken token) { - return new IAPIRequestMaker.RequestResult() { Response = (T)(object)CheckJsonResponse(token) }; + return new IAPIRequestMaker.RequestResult() { Response = (T)(object)CheckJsonResponse(token), HTTPHeaderDate = result.HTTPHeaderDate }; } return new IAPIRequestMaker.RequestResult() { Response = jsonResult, HTTPHeaderDate = result.HTTPHeaderDate }; }