Google Search Results
Collect structured Google search results for one or more queries, including titles, snippets, URLs, ranks, and result types.
概要
Google Search Results turns a small batch of search queries into structured records that can be compared, filtered, and analyzed without copying result pages by hand. Each record preserves the title, snippet, destination, displayed domain, reported position, result type, page number, next-page indicator, and collection date visible in the collected snapshot.
This data is useful wherever search visibility shapes a business decision. It provides a repeatable view of which pages and domains appear for a topic, what language they use in titles and snippets, and how their placement differs across queries. The resulting table is ready for SEO reviews, competitive research, content planning, and changes-over-time comparisons.
Data notes
Records come from publicly visible Google result pages and reflect the layout and content available when the collection runs. A record represents one reported result on one result page; the same destination may appear more than once when multiple queries or result-page features point to it. “Result position” is the position reported within that result page, not a guaranteed global rank across every Google interface. Titles, snippets, result types, and next-page indicators can vary with query wording, region, language, and changes made by Google. Signed-in or personalized results are not covered.
What the results look like
Each record is one Google search result or reported result feature:
| Result title | Result snippet | Result URL | Displayed domain | Result position | Result type |
|---|---|---|---|---|---|
| Best and inexpensive CRM for small business - Reddit | Jul 16, 2024 · Teamgate CRM is definitely the best CRM for small business as a generical sweeping statement, Pipedrive and Hubspot are also great options, | https://www.reddit.com/r/CRM/comments/1e5141p/best_and_inexpensive_crm_for_small_business/ | www.reddit.com | 1 | organic |
| CRM For Small Business (Your Complete Guide) - Salesforce | Salesforce CRM is the best for small businesses Small businesses need a CRM solution that addresses existing pain points, improves current sales operations, | https://www.salesforce.com/crm/crm-for-small-business/ | www.salesforce.com | 2 | organic |
The output also includes “Result page,” “More pages available,” and “Collection date.”
Use cases
- For competitor visibility analysis, group “Result URL” by “Displayed domain” and compare how often each domain appears and where its “Result position” falls.
- For content research, review “Result title” and “Result snippet” to identify recurring themes, claims, and wording among pages that currently surface for the topic.
- For SERP composition checks, segment records by “Result type” and “Result page” to see whether the collected results are dominated by organic links or other reported features.
- For ranking-change reviews, repeat the same query set and compare “Result position” and “Collection date” across snapshots to identify movement.
適用範囲と境界
Each run accepts up to 5 queries and collects up to 5 Google result pages per query; only publicly visible results returned at collection time are covered.
- 適している用途
- Use it when you need a structured snapshot of Google rankings for a small batch of search queries.
- Use it for SEO research, competitor visibility checks, or identifying pages that dominate a topic.
- 適さない用途
- Do not use it for personalized or signed-in Google results because it collects public results without an account session.
- Do not use it when exact result counts must be guaranteed because Google result layouts and availability can vary by query and collection time.
失敗時の処理
作者が宣言した失敗時と再試行の動作です。連携時にはシステムプロンプトに含めることをおすすめします。
- 1If a run stops before completion, retry the same small input once; if it stops again, reduce the number of queries or pages.
- 2An empty result may mean the query returned no public results or Google temporarily limited access; verify the query and retry later.
入力
この App の呼び出しに必要なパラメータで、manifest.json の input.schema から生成されています。
| フィールド | 業務名称 | 型 | 必須 | デフォルト | 列挙値/制約 | 例 | 説明 |
|---|---|---|---|---|---|---|---|
| query_terms | Search queries | array<string> | はい | — | 最大 5 件 | ["best crm for small business"] | Words or phrases to search on Google, with one query per item. Enter 1 to 5 queries per run. |
| page_count | Result pages per query | integer | いいえ | 1 | 1–5 | — | Number of Google result pages to collect for each query. Defaults to 1 and accepts values from 1 to 5. |
出力
1 件のレコードのフィールド構造で、manifest.json の output.schema から生成されています。
| フィールド | 業務名称 | 型 | 例 | 説明 |
|---|---|---|---|---|
| url | Result URL | string | https://www.reddit.com/r/CRM/comments/1e5141p/best_and_inexpensive_crm_for_small_business/ | Destination address associated with the search result. |
| title | Result title | string | Best and inexpensive CRM for small business - Reddit | Title displayed for the result on Google. |
| description | Result snippet | string | Jul 16, 2024 · Teamgate CRM is definitely the best CRM for small business as a generical sweeping statement, Pipedrive and Hubspot are also great options, | Summary text displayed beneath the result title. |
| displayed_url | Displayed domain | string | www.reddit.com | Domain text displayed with the search result. |
| position | Result position | string | 1 | Position reported for the result within its Google result page. |
| result_type | Result type | string | organic | Google result category reported by the collector, such as organic. |
| current_page | Result page | string | 1 | Google result page number on which the record appeared. |
| has_next_page | More pages available | string | true | Text indicator showing whether Google reported another result page at collection time. |
| collected_date | Collection date | string | 2026-09-09 | Date recorded by the collector for this search result snapshot. |
レコード Schema
出力はレコード単位で 1 件ずつ返されます。 detail.output.idFieldHint
{
"type": "object",
"properties": {
"url": {
"type": "string",
"title": "Result URL",
"description": "Destination address associated with the search result.",
"prefill": "https://www.reddit.com/r/CRM/comments/1e5141p/best_and_inexpensive_crm_for_small_business/"
},
"title": {
"type": "string",
"title": "Result title",
"description": "Title displayed for the result on Google.",
"prefill": "Best and inexpensive CRM for small business - Reddit"
},
"description": {
"type": "string",
"title": "Result snippet",
"description": "Summary text displayed beneath the result title.",
"prefill": "Jul 16, 2024 · Teamgate CRM is definitely the best CRM for small business as a generical sweeping statement, Pipedrive and Hubspot are also great options,"
},
"displayed_url": {
"type": "string",
"title": "Displayed domain",
"description": "Domain text displayed with the search result.",
"prefill": "www.reddit.com"
},
"position": {
"type": "string",
"title": "Result position",
"description": "Position reported for the result within its Google result page.",
"prefill": "1"
},
"result_type": {
"type": "string",
"title": "Result type",
"description": "Google result category reported by the collector, such as organic.",
"prefill": "organic"
},
"current_page": {
"type": "string",
"title": "Result page",
"description": "Google result page number on which the record appeared.",
"prefill": "1"
},
"has_next_page": {
"type": "string",
"title": "More pages available",
"description": "Text indicator showing whether Google reported another result page at collection time.",
"prefill": "true"
},
"collected_date": {
"type": "string",
"title": "Collection date",
"description": "Date recorded by the collector for this search result snapshot.",
"prefill": "2026-09-09"
}
},
"required": [],
"additionalProperties": false
}連携方法
この App は MCP、API、SDK、ファイルエクスポートのいずれでも連携でき、どのチャネルも同じ能力と料金を共有します。すべてのリクエストは Authorization: Bearer ヘッダーで認証し、認証情報には API Key(長期有効。Open Platform コンソールで作成)を使用します。MCP クライアントは OAuth によるキー不要のログインにも対応しています。CLI や Skill など、さらに多くの連携方法も準備中です。
MCP(Model Context Protocol)を使うと、Claude や Cursor などの AI クライアントからこの App を直接呼び出せます。クライアントと認証方式を選び、下の設定をコピーしてください。
クライアント設定
Bearer の後の値を長期有効な API Key に置き換えてください。あらゆるクライアント、CI、ヘッドレス環境で利用できます。
{
"mcpServers": {
"YiJacobJohnRaku__google-search-scraper": {
"type": "http",
"url": "https://mcp-v2.octoparse.com?pin=YiJacobJohnRaku/google-search-scraper",
"headers": { "Authorization": "Bearer <YOUR_API_KEY>" }
}
}
}AI に設定を任せる
設定を手作業で編集したくない場合は、インストールプロンプトをコピーして任意の AI クライアントに貼り付けてください。AI が自分のやり方でセットアップを完了します(プロンプトは AI があなたに API Key を尋ねる形になっているため、認証情報がチャット履歴や共有設定に残りません)。
detail.access.mcp.composeHint
料金
正常に返されたレコードの件数に応じて課金されます。失敗したタスクには課金されません。
複数の課金イベントはそれぞれ独立して累計されます。詳細は各項目をご覧ください。失敗したタスクには課金されません。
今すぐ試す
パラメータを入力して実行してください。結果は実際の呼び出しによるものです。