action goog_serp { label: "SERP" description: "Perform Google Search and search for website in Search Engine Results Pages (SERP)\n\nParameters\n----------\nquery : the string query to perform search. supports advance queries. Check out https://moz.com/blog/the-ultimate-guide-to-the-google-search-parameters guide for formatting, it is recommended to set the query `&num=100`\n\nReturns\n-------\njson: a list of results with the query, website, searched_results, and position. json[\"position\"] will be set to -1 if website is not found in results" provider: goog method: POST path: "/v1/serp/" encoding: json input: { type: "object" required: ["query", "website"] properties: { query: { type: "string" } website: { type: "string" } } } output: { type: "object" properties: { position: { type: "integer" } query: { type: "string" } searched_results: { type: "integer" } website: { type: "string" } } } }