HTTPS GET Delete headers

How do I stop the HTTPS headers being downloaded when my code executes a GET?
I only want the data string.

01:16:34.863 → HTTP/1.1 200 OK
01:16:34.863 → Date: Sun, 30 May 2021 17:16:34 GMT
01:16:34.863 → Set-Cookie: JSESSIONID=12he7xjuspj39o29qpliddmi4;Path=/; Secure
01:16:34.863 → Expires: Thu, 01 Jan 1970 00:00:00 GMT
01:16:34.863 → Content-Type: text/plain
01:16:34.863 → Vary: Accept-Encoding, User-Agent
01:16:34.863 → Connection: close
01:16:34.863 → Server: Jetty(7.6.17.v20150415)
01:16:34.863 → Strict-Transport-Security: max-age=15768000
01:16:34.863 →

01:16:34.863 → 20210530,17:40,4200,0,NaN,NaN,NaN,14.4,238.2 This is the only line I want to download
01:16:34.897 → disconnecting from server.

This needs to be handled in the arduino sketch -

Tip: the body begins after the first empty line in the response data.

Thanks, all working OK Useful info in your Stack Overflow link