Restful Sensors in split config file - set scan_internal

- platform: rest
  name: changenow_now_ada
  resource: "https://api.changenow.io/v1/exchange-amount/100/now_ada?api_key=<key>"
  method: GET
  headers:
    User-Agent: "Home Assistant"
  value_template: "{{ value_json.estimatedAmount if value_json else 'Dunno' }}"
  scan_interval: 60
  unit_of_measurement: $
  unique_id: changenow_now_ada
- platform: rest
  name: changenow_xmr_now
  resource: "https://api.changenow.io/v1/exchange-amount/1/xmr_now?api_key=key"
  method: GET
  headers:
    User-Agent: "Home Assistant"
  value_template: "{{ value_json.estimatedAmount if value_json else 'Dunno' }}"
  scan_interval: 120
  unit_of_measurement: $
  unique_id: changenow_xmr_now

But I see that both sensors are still updating at 30 seconds. How can I specify differing update periods?

I don’t think scan_interval is a valid configuration option: docs

I think that, by default, this gets updated every 30 seconds, like all polled sensors. (As you report…)

Is the 30-second interval an actual problem for you? See this post by @petro.

Yeah I actually have 3 sensors, and I can cause rate limits. Only one of them I want to update at 30 seconds the others I’m quite happy at 120 seconds if form 500 seconds

Just happy? Unless there is a rate-limiting issue, I’d suggest leaving it alone.

yeah I am hitting rate limits.