Weather forecast: Hour by hour?

Looking at the docs for dark sky (https://www.home-assistant.io/components/sensor.darksky/)- is there a way to get an hour-by-hour forecast? Looking for something like you would find on something like https://weather.com/weather/hourbyhour/l/28104:4:US

I see it in their API (https://darksky.net/dev/docs) but can’t find a corresponding sensor.

Thanks

Hey, did you get anywhere with this in the end? I see the Darksky weather component has hourly, but only seems to pull through the temperature and icons?

No, I didn’t. I ended up simply embedding an iframe on my ha-dashboard:

weather_frame:
  # Generate your link - https://www.wunderground.com/weather-radar/united-states/
  widget_type: iframe
  title: Radar
  refresh: 200
  frame_style: ""
  img_list:
    - https://icons.wxug.com/data/weather-maps/radar/united-states/charlotte-north-carolina-region-current-radar-animation.gif

Which was what I was wanting to use it for

The darksky API defaults to hour information (as I undestand it), I use the following;

# weather information platform
weather:
  - platform: darksky
    api_key: !secret darksky_api
    scan_interval: '01:00'

I then use a custom card to display the information of which there are a few examples in the forum.