Tomorrow.io api call does not bring values as expected

Hello…

Not sure if this is a question for here or at tomorrow itself, but since i am here already i give it a try
I have set up my own curl request for fields i want to get in my weather card…
Was so far not so bad, but for some reason, i cant get 03, fine particles and so not read out…
My call looks like this:

rest:
 - resource: https://api.tomorrow.io/v4/timelines?location=11.09324859714022,-14.80557788915826&timesteps=1d&fields=temperature,temperatureApparent,temperatureMax,temperatureMin,humidity,windSpeed,windGust,pressureSurfaceLevel,precipitationIntensity,precipitationProbability,sunriseTime,sunsetTime,visibility,cloudCover,cloudBase,cloudCeiling,moonPhase,weatherCode,grassIndex,treeIndex,weedIndex,pollutantO3,particulateMatter10,particulateMatter25,epaHealthConcern,epaIndex&units=metric&apikey=MYKEY

But for some reason, it does not report back precipitationProbability, pollutantO3, particulateMatter10, particulateMatter25, epaHealthConcern and epaIndex
They stay state unknown in the Developer tools check…
I also had precepitationtype in my list, but was not using it…but was also empty…
In their API fields page, the missing value fields are exact and dont have typos and when i run the curl call in a shell i get all the other and no errors or warning…it simply ignores the others…

Any ideas?
Cause i would love to have the particulates and such in my weather card…
I have the tomorrow.io integration installed and that is seemingly doping its own limited fields request…
and i cannot change that from hourly to daily…
So if i could just use that with all possible fields and forecast i would be happy as well if someone can help on that…
Thx in advance!!!

Did you ever find a solution. I am currently running into the same problem

I ended up wirh this code and settled with it

name: Newton, NJ
language: en
animation: true
pollen:
  weed:
    entity: sensor.tio_pollen_weed_0d
    min: 0
    max: 5
    low: 1
    high: 3
  grass:
    entity: sensor.tio_pollen_grass_0d
    min: 0
    max: 5
    low: 1
    high: 3
  tree:
    entity: sensor.tio_pollen_tree_0d
    min: 0
    max: 5
    low: 1
    high: 3
weather:
  icons_model: climacell
  current:
    sun: sun.sun
    moon_phase: sensor.tio_moon_phase_0d
    current_conditions: sensor.tio_weather_code_text_0d
    temperature: sensor.tio_temperature_actual
    humidity: sensor.tio_temperature_actual
    pressure: sensor.tio_pressuresurfacelevel_0d
    visibility: sensor.tio_visibility_0d
    wind_bearing: sensor.tio_windgusts_0d
    wind_speed: sensor.tio_windgusts_0d
    feels_like: sensor.temperature_apparent
    forecast: true
  forecast:
    temperature_high:
      day_1: sensor.tio_temperature_maximum_0d
      day_2: sensor.tio_temperature_maximum_1d
      day_3: sensor.tio_temperature_maximum_2d
      day_4: sensor.tio_temperature_maximum_3d
    temperature_low:
      day_1: sensor.tio_temperature_minimum_0d
      day_2: sensor.tio_temperature_minimum_1d
      day_3: sensor.tio_temperature_minimum_2d
      day_4: sensor.tio_temperature_minimum_3d
    precipitation_probability:
      day_1: sensor.tio_precipitationprobability_0d
      day_2: sensor.tio_precipitationprobability_1d
      day_3: sensor.tio_precipitationprobability_2d
      day_4: sensor.tio_precipitationprobability_3d
    precipitation_intensity:
      day_1: sensor.tio_precipitation_intensity_0d
      day_2: sensor.tio_precipitation_intensity_1d
      day_3: sensor.tio_precipitation_intensity_2d
      day_4: sensor.tio_precipitation_intensity_3d
    icons:
      day_1: sensor.tio_weather_code_text_0d
      day_2: sensor.tio_weather_code_text_1d
      day_3: sensor.tio_weather_code_text_2d
      day_4: sensor.tio_weather_code_text_3d
air_quality:
  o3: sensor.owm_o3
  co: sensor.owm_co
  pm25: sensor.owm_pm25
  pm10: sensor.owm_pm10
  epa_aqi: sensor.owm_aqi
  epa_health_concern: sensor.owm_report