8000 Add Google Weather docs by tronikos · Pull Request #39589 · home-assistant/home-assistant.io · GitHub
[go: up one dir, main page]

Skip to content

Add Google Weather docs #39589

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: next
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions source/_integrations/google_weather.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
title: Google Weather
description: Instructions on how to integrate Google Weather within Home Assistant.
ha_category:
- Weather
ha_release: '2025.7'
ha_iot_class: Cloud Polling
ha_config_flow: true
ha_domain: google_weather
ha_codeowners:
- '@tronikos'
ha_integration_type: service
ha_quality_scale: bronze
ha_platforms:
- weather
---

This {% term integration %} uses [Google Weather](https://developers.google.com/maps/documentation/weather) as a source for weather data for your location.

## Prerequisites

You need an API key. Follow instructions [in the Google developer documentation](https://developers.google.com/maps/documentation/weather/get-api-key) for creating an API key.

{% note %}
The Weather API is in the pre-GA Preview stage, and there is no charge for API usage during Preview.
For pricing once it's in GA refer to the [billing section in the Google developer documentation](https://developers.google.com/maps/documentation/weather/usage-and-billing).

It will be free as long as you stay under 10,000 requests per month.
{% endnote %}

{% include integrations/config_flow.md %}

## Data updates

The integration fetches:

- current weather conditions every 15 minutes
- daily weather forecast for the next 10 days every 1 hour
- hourly weather forecast for the next 24 hours every 1 hour

This results in 4,464 requests per month, meaning you could have up to 2 locations and still stay under the 10,000 free usage cap.

## Known limitations

- Weather forecast information isn't currently available in South Korea and Japan. See [here](https://support.google.com/websearch/answer/13687874).

## Troubleshooting

- Enable debug logging and attach logs before opening an issue.

## Removing the integration

{% include integrations/remove_device_service.md %}
0