--- title: "IQVIA" description: "Instructions on how to use IQVIA data within Home Assistant" logo: iqvia.png ha_category: - Health ha_release: 0.63 ha_iot_class: Cloud Polling redirect_from: - /components/sensor.pollen/ - /components/pollen/ --- The `iqvia` sensor platform collects and displays allergy, asthma and disease information (based on a U.S. ZIP code) from [IQVIA](https://www.iqvia.com/). Data measured includes: * Indicies for allergies, asthma and cold/flu indices * Trends * Current outlook * more! ## Configuring the Platform To integrate `iqvia` into Home Assistant, add the following section to your `configuration.yaml` file (adjusting the `monitored_conditions` list to your liking): ```yaml iqvia: zip_code: "00544" monitored_conditions: - allergy_average_forecasted - allergy_index_today - allergy_index_tomorrow - asthma_average_forecasted - asthma_index_today - asthma_index_tomorrow - disease_average_forecasted - disease_index_today ``` {% configuration %} zip_code: description: The U.S. ZIP code to gather data for (as a quoted string). required: true type: string monitored_conditions: description: The metric types to monitor. required: true type: list keys: allergy_average_forecasted: description: "The average forecasted allergy index over the next 5 days." allergy_index_today: description: "The allergy index for today." allergy_index_tomorrow: description: "The allergy index for tomorrow." asthma_average_forecasted: description: "The average forecasted asthma index over the next 5 days." asthma_index_today: description: "The asthma index for today." asthma_index_tomorrow: description: "The asthma index for tomorrow." disease_average_forecasted: description: "The average forecasted cold/flu index over the next 5 days." disease_index_today: description: "The cold/flu index for today." {% endconfiguration %}