action goog_news { label: "News" description: "Perform Google News Search\n\n Parameters\n----------\nquery : the string query to perform search for Google news. A simple query for `president` will be `q=president`. An example of multiple keyword would be `q=news+about+presdient+trump`. News can also be filtered by country and language. For `US` news and in English the query will be `q=trump&ceid=US:en` for news in Great Britian the query will be `q=trump&ceid=GB:en`\n\nReturns\n-------\njson: {\"feed\": { \"title\" : \"trump\" ...} , \"entites\": [ {\"title\" : \"Trump doubles down on divisive messaging in speech to honor Independence Day - CNN\", \"links\": []} ...]}" provider: goog method: GET path: "/v1/news/{query}" encoding: json output: { type: "object" properties: { entries: { type: "array" items: { type: "object" properties: { guidislink: { type: "string" } id: { type: "string" } link: { type: "string" } links: { type: "string" } published: { type: "string" } published_parsed: { type: "string" } source: { type: "string" } sub_articles: { type: "string" } summary: { type: "string" } summary_detail: { type: "string" } title: { type: "string" } title_detail: { type: "string" } } } } feed: { type: "object" properties: { generator: { type: "string" } generator_detail: { type: "string" } language: { type: "string" } link: { type: "string" } links: { type: "string" } publisher: { type: "string" } publisher_detail: { type: "string" } rights: { type: "string" } rights_detail: { type: "string" } subtitle: { type: "string" } subtitle_detail: { type: "string" } title: { type: "string" } updated: { type: "string" } updated_parsed: { type: "string" } } } } } }