HTTP Rest API show esphome - current price of BTC - Rest API

Hi, I would like to know if it’s possible to use ONLY Esphome to do an HTTP Get to a rest API and save the JSON response in a sensor state so this can be manipulated in a display.

curl -s https://api.coindesk.com/v1/bpi/currentprice.json | jq ".bpi.EUR"

{
  "code": "EUR",
  "symbol": "€",
  "rate": "30,494.8974",
  "description": "Euro",
  "rate_float": 30494.8974
}

References:

Not out-of-the-box: the only information you get back is the status code. See here for guidance:

It’d be much easier to do the request in HA and publish that value to your ESPHome node.