{"id":21130405,"url":"https://github.com/serpapi/google-sheet-addon-guide","last_synced_at":"2025-06-13T10:35:55.812Z","repository":{"id":47083061,"uuid":"233067353","full_name":"serpapi/google-sheet-addon-guide","owner":"serpapi","description":"Documentation for Google Sheet Add-on for SerpApi","archived":false,"fork":false,"pushed_at":"2021-09-14T11:06:57.000Z","size":2,"stargazers_count":2,"open_issues_count":1,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-06T05:15:55.588Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/serpapi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-01-10T14:45:36.000Z","updated_at":"2023-03-07T05:07:53.000Z","dependencies_parsed_at":"2022-09-10T19:11:02.232Z","dependency_job_id":null,"html_url":"https://github.com/serpapi/google-sheet-addon-guide","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/serpapi/google-sheet-addon-guide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serpapi%2Fgoogle-sheet-addon-guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serpapi%2Fgoogle-sheet-addon-guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serpapi%2Fgoogle-sheet-addon-guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serpapi%2Fgoogle-sheet-addon-guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/serpapi","download_url":"https://codeload.github.com/serpapi/google-sheet-addon-guide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serpapi%2Fgoogle-sheet-addon-guide/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259627900,"owners_count":22886944,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T05:33:01.894Z","updated_at":"2025-06-13T10:35:55.788Z","avatar_url":"https://github.com/serpapi.png","language":null,"readme":"# Google Sheet Addon Guide\nDocumentation for Google Sheet Add-on for SerpApi\nhttps://chrome.google.com/webstore/detail/pcmlccdlgbbcpkimkmepgjpegkldoejo\n\nStatus: This documentation is under development.\n\n## Add-on introduction\nThis add-on allows to run localized search on Google, Bing and Baidu and more...\nIt makes easy to search or return the current ranking of your website or extract data from the search engine.\n\nVideo tutorial: https://youtu.be/GB0ulLtKQZg\n\nThis add-on offers:\n - 2 examples to get started\n - Custom function to return search result from Google, Bing, Baidu and more...\n\u003e Find the link the top coffee shop in Austin, TX listed on Google\n=SERPAPI_RESULT(\"coffee\", \"google\", \"local_results\", \"link\", \"Austin, Texas, United States\", \"en\", \"us\", 10, 0, \"desktop\", false)\n - Rank your web site on Google using localized search.\n  =SERPAPI_GOOGLE_RANK(\"yourwebsite.com\", \"Coffee\", \"Austin, Texas, United States\") returns rank of yourwebsite.com for Coffee.\n - Normalize location for Google and Bing. \n  =SERPAPI_LOCATION(\"Austin, TX\") returns normalize location for Google e.g. \"Austin, Texas, United States\"\n\n*Status: Production release*\n\nThis add-on leverages SerpApi service which provides the capability to search on Google from anywhere in the planet.\nYou need to obtain an API Key from SerpApi, then register the key. \nWe offer a 15-day free trial and 5,000 searches.\n\n## Menu \n\nThe application offers 3 menus to quickly populate your sheet with meaningfull data.\n\n## Custom functions\n\nSerpApi add-on extends existing functions provided by Google Sheet. It enables to process about any data available from the search engine responses.\n\n### SERPAPI_RESULT: Extract data from search engine result supported by SerpApi\n\nThis function enables to extract hierachical data from the result and display as a set of rows.\n* \n* The selection mecanism works as following: \n* You must define a `query` includes the keywords you're looking for.\n*\n* The `opt_section` can take: organic_results, local_results, related_questions, people_also_search_for, knowledge_graph and more. Default is organic_results.\n* Finally select a `opt_field` depending on the `opt_section`.\n*  For `opt_section` == organic_results the posible values: position, title, link, displayed_link, date, snippet and more...\n*\n*  see the https://serpapi.com/playground for all possible values. \n\nalias: =SERPAPI_GOOGLE_RESULT(), =SERPAPI_BAIDU_RESULT(), =SERPAPI_BING_RESULT()\n\n#### Example 1: Show the top 10 links for results / Coffee.\n```=SERPAPI_RESULT(\"coffee\", \"google\", \"organic_results\", \"link\")```\n\n#### Example 2: Show the title of the top 10 local coffee shop around Austin, Texas.\n```=SERPAPI_RESULT(\"coffee\", \"google\", \"local_results\", \"title\", \"Austin, Texas, United States\")```\n\n#### Example 3: Find the best coffee shop in Austin, TX with all the fields declared\n```=SERPAPI_RESULT(\"coffee\", \"google\", \"local_results\", \"link\", \"Austin, Texas, United States\", \"en\", \"us\", 10, 0, \"desktop\", false)```\n\n### SERPAPI_RANK : Get search engine rank for a domain, a keyword, and an optional location\n\n```\n=SERPAPI_RANK(\"google\", \"starbuck.com\", \"Austin, Texas, United States\")\n```\n\n*alias: SERPAPI_GOOGLE_RANK, SERPAPI_BING_RANK, SERPAPI_YAHOO_RANK*\n\n### SERPAPI_LOCATION: Normalized location name based on Google location system.\n```\n=SERPAPI_LOCATION('Paris, France')\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserpapi%2Fgoogle-sheet-addon-guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fserpapi%2Fgoogle-sheet-addon-guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserpapi%2Fgoogle-sheet-addon-guide/lists"}