Importing RSS and ATOM feeds
Here’s how to use Google Spreadsheets to import RSS and ATOM data.
ImportFeed for RSS and ATOM
All sorts of data gets pushed out as RSS/ATOM feeds. You can put those in spreadsheets too. The command takes the following form:
=ImportFeed(URL, [feedQuery | itemQuery], [headers], [numItems])
- URL of the feed.
- We'll almost always use itemQuery options ("items", "items author", "items title", "items summary", "items url", or "items created"), as they return individual items in the feed while feedQuery just returns metadata about the feed.
- "Items" will be the best default option, as it returns everything you'll ...