Serper APIとCustom Search JSON APIの使い方&料金比較!検索結果取得の最強ツールはどっち?

Serper API Custom Search JSON API 使い方 料金比較
押さえておきたいポイント
  • Serper APIはサードパーティ製で、Google検索に加えBingやYouTubeなど幅広い検索エンジンに対応。
  • Custom Search JSON APIはGoogle公式で、Google検索に特化している。
  • 使い方から活用事例まで解説。

Custom Search JSON APISerper APIもどちらも検索結果を取得するためのAPIです。

「どちらも検索結果を取得するなら、どっちを使っても一緒じゃん」と思う方も多いと思います。

本記事ではCustom Search JSON APIとSerper APIがどう違うのか、取得できる結果に違いが出るのか、それぞれのユースケースについて解説をしたいと思います。

ぜひ最後までお読みください。

目次

Serper APIの概要

Serperは有料のGoogle検索結果を取得するAPIであり、検索から回答ボックス、ナレッジグラフ、オーガニック検索結果を取得できます。

ここでいう回答ボックスはユーザーの質問に対する直接的な答えであり、ナレッジグラフはエンティティに関する構造化された情報です。

Serper公式ページには1〜2秒で検索結果が出力されると記載されています。つまりSerper APIは検索結果の出力が非常に速いという特徴があります。

これまで検索結果を取得するには、スクレイピングを活用するのが主流だったと思いますが、スクレイピングは許可されたサイトでしか利用ができないので、時間がかかってしまうという欠点がありました。

しかし、Serper APIを使えば、スクレイピングに比べて固定されたサイトだけではなく、さまざまなWebサイトの情報を取得でき、しかもスクレイピングに比べて高速で処理が完了します。

また、Serper APIはリアルタイム検索であり、最新の結果を取得するためにGoogleに直接クエリを送信します。Serper APIはデフォルトで1秒あたり300クエリ、1分あたり15,000〜18,000件の検索が可能になります。

Custom Search JSON APIとの違い

Serper APIと同じように検索結果を取得するAPIにCustom Search JSON APIがあります。

Custom Search JSON APIはGoogleが提供しているAPIの一つで、Google検索を活用して、特定のWebサイトやドメインに絞った検索、独自の検索エンジンを構築するためのAPIです

Custom Search JSON APIを使えば自身で開発しているアプリケーションやWebサイトに組み込むことができます。

APIを使って取得したデータはJSON形式で出力されるため、解析を行うことも簡単です。

また、検索するサイトを選択することができ、個々のページを検索するのか、サイト全体なのか、ドメイン全体なのかといったことを指定できます。そのため、自身のWebサイトを有している場合、どの検索キーワードで検索順位が何位だったのかなどを追跡することも可能です。

Custom Search JSON APIで検索できるのはブラウザはGoogleのみですが、Serper APIはGoogleだけでなくBingやYoutube、Google Mapsなど幅広い検索エンジンから情報を取得できます。

Serper APIの料金体系

Serper APIは有料サービスであり、料金体系は次のとおりです。

スクロールできます
StarterStandardScaleUltimate
値段50ドル375ドル1250ドル3750ドル
クレジット数50,000 クレジット50万クレジット250万クレジット1250万クレジット
クエリ数50,000件500,000件2,500,000件12,500,000件
1秒あたりのクエリ数50100200300
リアルタイム対応
参考:https://serper.dev/

Custom Search JSON APIの料金は1日100件までの検索クエリは無料です。

101件からは1000件あたり5ドルの料金が発生し、この料金は使用料に応じて変動する可能性があります。そのため、おおまかな計算だと次のとおりです。

  • 1日の検索クエリ数が100件の場合:無料
  • 1日の検索クエリ数が1000件の場合:100件は無料、900件は有料となるため、 (900 / 1000) × 5ドル = 4.5ドル 
  • 1日の検索クエリ数が10,000件の場合:100件は無料、9,900件は有料となるため、 (9900 / 1000) × 5ドル = 49.5ドル

Serper APIの使い方

Serper APIを使うにはまずアカウントを作成します。

Sign upを選択すると以下の画面になるので、必要情報を入力後、メールが届きます。

届いたメールに記載されているURLをクリックすると、Playgroundのページに遷移するのでこれで登録は完了です。

Playgroundの以下の画像から検索するキーワードや国などを設定します。タイプは検索の他に画像や地図、論文などを調べることできるので、かなり幅広い分野について調べることが可能です。

実際に検索を実行してみると動画のように出力結果が更新されます。

「Result」の横に「Code」というタブがありますが、こちらを開くと任意のプログラミング言語でのコードが表示されます。

こちらのコードをコピペしてローカル環境でも実行することができます。

コード例はこちら
import http.client
import json

conn = http.client.HTTPSConnection("google.serper.dev")
payload = json.dumps({
  "q": "apple inc"
})
headers = {
  'X-API-KEY': 'your_api_key',
  'Content-Type': 'application/json'
}
conn.request("POST", "/search", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
出力結果はこちら
{"searchParameters":{"q":"apple inc","type":"search","engine":"google"},"knowledgeGraph":{"title":"Apple","type":"Technology company","website":"http://www.apple.com/","imageUrl":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQwGQRv5TjjkycpctY66mOg_e2-npacrmjAb6_jAWhzlzkFE3OTjxyzbA&s=0","description":"Apple Inc. is an American multinational corporation and technology company headquartered and incorporated in Cupertino, California, in Silicon Valley. It is best known for its consumer electronics, software, and services.","descriptionSource":"Wikipedia","descriptionLink":"https://en.wikipedia.org/wiki/Apple_Inc.","attributes":{"Customer service":"1 (800) 275-2273","Founders":"Steve Jobs, Steve Wozniak, and Ronald Wayne","Headquarters":"Cupertino, CA","CEO":"Tim Cook (Aug 24, 2011–)","CFO":"Luca Maestri","Founded":"April 1, 1976, Los Altos, CA"}},"organic":[{"title":"Apple","link":"https://www.apple.com/","snippet":"Discover the innovative world of Apple and shop everything iPhone, iPad, Apple Watch, Mac, and Apple TV, plus explore accessories, entertainment, ...","sitelinks":[{"title":"Support","link":"https://support.apple.com/"},{"title":"Careers at Apple","link":"https://www.apple.com/careers/us/"},{"title":"Contact Apple","link":"https://www.apple.com/contact/"},{"title":"Store","link":"https://www.apple.com/store"},{"title":"Investor Relations","link":"https://investor.apple.com/investor-relations/default.aspx"}],"position":1},{"title":"Apple Inc. - Wikipedia","link":"https://en.wikipedia.org/wiki/Apple_Inc.","snippet":"Apple Inc. is an American multinational corporation and technology company headquartered and incorporated in Cupertino, California, in Silicon Valley.","sitelinks":[{"title":"History","link":"https://en.wikipedia.org/wiki/History_of_Apple_Inc."},{"title":"List of Apple products","link":"https://en.wikipedia.org/wiki/List_of_Apple_products"},{"title":"Litigation involving Apple Inc.","link":"https://en.wikipedia.org/wiki/Litigation_involving_Apple_Inc."},{"title":"Apple Park","link":"https://en.wikipedia.org/wiki/Apple_Park"}],"position":2},{"title":"Apple Inc. | History, Products, Headquarters, & Facts - Britannica","link":"https://www.britannica.com/money/Apple-Inc","snippet":"American manufacturer of personal computers, smartphones, and tablet computers. Apple was the first successful personal computer company and ...","date":"3 days ago","position":3},{"title":"AAPL: Apple Inc Stock Price Quote - NASDAQ GS - Bloomberg","link":"https://www.bloomberg.com/quote/AAPL:US","snippet":"Stock analysis for Apple Inc (AAPL:NASDAQ GS) including stock price, stock chart, company news, key statistics, fundamentals and company profile.","position":4},{"title":"Apple Inc. (AAPL) Company Profile & Facts - Yahoo Finance","link":"https://finance.yahoo.com/quote/AAPL/profile/","snippet":"(408) 996-1010 https://www.apple.com. Sector: Technology. Industry: Consumer Electronics. Full Time Employees: 164,000. Description. Apple Inc. designs ...","position":5},{"title":"Apple Inc. (AAPL) Stock Price Today - WSJ","link":"https://www.wsj.com/market-data/quotes/AAPL","snippet":"Apple Inc. engages in the design, manufacture, and sale of smartphones, personal computers, tablets, wearables and accessories, and other varieties of related ...","position":6},{"title":"Apple Inc. (AAPL) Stock Price, News, Quote & History - Yahoo Finance","link":"https://finance.yahoo.com/quote/AAPL/","snippet":"Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide. The company offers iPhone, ...","position":7}],"places":[{"title":"Apple Old Orchard","address":"Skokie, IL","cid":"6768623911332750844"},{"title":"Apple Express, Inc","address":"Chicago, IL","cid":"7605897561132709159"},{"title":"Apple Michigan Avenue","address":"Chicago, IL","cid":"2571749994430788836"}],"peopleAlsoAsk":[{"question":"What is the Apple Inc?","snippet":"Apple Inc., originally Apple Computer, Inc., is a multinational corporation that creates and markets consumer electronics and attendant computer software, and is a digital distributor of media content. Apple's core product lines are the iPhone smartphone, iPad tablet computer, and the Mac personal computer.","title":"History of Apple Inc. - Wikipedia","link":"https://en.wikipedia.org/wiki/History_of_Apple_Inc."},{"question":"Who owns Apple Inc?","snippet":"Apple (AAPL) Ownership Overview The ownership structure of Apple (AAPL) stock is a mix of institutional, retail, and individual investors. Approximately 49.03% of the company's stock is owned by Institutional Investors, 0.06% is owned by Insiders, and 50.91% is owned by Public Companies and Individual Investors.","title":"Who owns Apple? AAPL Stock Ownership - TipRanks.com","link":"https://www.tipranks.com/stocks/aapl/ownership"},{"question":"Why did Apple change to Apple Inc?","snippet":"During his keynote speech at the Macworld Expo on January 9, 2007, Jobs announced the renaming of Apple Computer, Inc. to Apple Inc., because the company had broadened its focus from computers to consumer electronics. This event also saw the announcement of the iPhone and the Apple TV.","title":"Apple Inc. - Wikipedia","link":"https://en.wikipedia.org/wiki/Apple_Inc."},{"question":"Which company owns the iPhone?","snippet":"The iPhone is a line of smartphones developed and marketed by Apple that run iOS, the company's own mobile operating system. The first-generation iPhone was announced by then–Apple CEO Steve Jobs on January 9, 2007, at Macworld 2007, and launched later that year.","title":"iPhone - Wikipedia","link":"https://en.wikipedia.org/wiki/IPhone"}],"relatedSearches":[{"query":"Find My iPhone"},{"query":"apple inc คืออะไร"},{"query":"Apple Inc full form"},{"query":"Apple company history"},{"query":"Apple company owner"},{"query":"Apple Inc website"},{"query":"Apple Inc investor relations"},{"query":"Apple Inc address"},{"query":"Apple Inc usa"}],"credits":1}

出力結果を見てみると、「position」というキーワードがあります。これは入力したキーワードでの検索順位を示しています。

Open AIで調べた時の結果を例にすると「{“title”:”OpenAI”,”link”:”https://openai.com/”」「”position”:1」」という結果が表示されます。

これはhttps://openai.com/というページがOpen AIで調べた時の検索1位です、ということを示しています。

このようにSerper APIを使うと任意のキーワードの検索順位も調べることができるので、SEO分析にも活用ができます。

ちなみに、初めて登録した場合、2,500クレジットもらえます。Dashboardから残りのクレジットを確認することが可能です。

Custom Search JSON APIの使い方

Custom Search JSON APIを使うにはGoogle Cloud PlatformでCustom Search APIを有効化する必要があります。

Google Cloud Platformにアクセスします。

ログイン後、「新しいプロジェクト」をクリックして、新しいプロジェクトを作成します。

プロジェクト名を入力したら、作成をクリックして作成を完了させましょう。

作成されたプロジェクトを選択します。

次にAPIを有効にします。

向かって左上に3本線があるので、それをクリックして「APIとサービス」→「ライブラリ」をクリック。

検索窓にCustom Search APIと入力すると一つだけ出てくるので、そちらをクリックします。

そうすると「有効にする」というボタンが出てくるので、そちらをクリック。

APIを有効にしたら、認証情報を作成します。画面向かって左の「認証情報」をクリック。

認証情報を作成」→「APIキー」を選択。

「APIキー」をクリックするとAPIキーが作成されるので、そちらをコピペしてメモっておきましょう。

ここまでできたら次はGoogleカスタム検索エンジンを作成して、検索エンジンIDを取得します。

Programmable Searchにアクセスして、「追加」をクリック。

検索エンジンの名前など必要な情報を全て入力したら、作成をクリックして作成完了です。

新しい検索エンジンが作成されました」と表示されている下に「カスタマイズ」というボタンがあるので、そちらをクリック。

検索エンジンID」をコピペしてメモっておきましょう。

以上でCustom Search APIを使う準備は終了です。あとはコードを実行すれば検索結果を得ることができます。

コードはこちら
import requests
import json

def search_google(query, api_key, custom_search_engine_id=None, num_results=10):
    base_url = "https://www.googleapis.com/customsearch/v1"
    params = {
        "key": api_key,
        "q": query,
        "cx": custom_search_engine_id,
        "num": num_results, 
        "start": 1 
    }
    if custom_search_engine_id is None:
        del params["cx"]

    try:
        response = requests.get(base_url, params=params)
        response.raise_for_status() 
        search_results = response.json()
        return search_results
    except requests.exceptions.RequestException as e:
        print(f"エラーが発生しました: {e}")
        return None


if __name__ == "__main__":
    api_key = "your_api_key" 
    custom_search_engine_id = "your ID"
    search_query = ""
    num_results = 5

    results = search_google(search_query, api_key, custom_search_engine_id, num_results)

    if results:
        print(json.dumps(results, indent=2, ensure_ascii=False))
        if 'items' in results:
          for index, item in enumerate(results['items']):
            print(f"=== {index + 1} ===")
            print(f"  タイトル: {item['title']}")
            print(f"  リンク: {item['link']}")
            print(f"  スニペット: {item['snippet']}")
            print("---")
        else:
          print("検索結果が見つかりませんでした。")
結果はこちら
{
  "kind": "customsearch#search",
  "url": {
    "type": "application/json",
    "template": "https://www.googleapis.com/customsearch/v1?q={searchTerms}&num={count?}&start={startIndex?}&lr={language?}&safe={safe?}&cx={cx?}&sort={sort?}&filter={filter?}&gl={gl?}&cr={cr?}&googlehost={googleHost?}&c2coff={disableCnTwTranslation?}&hq={hq?}&hl={hl?}&siteSearch={siteSearch?}&siteSearchFilter={siteSearchFilter?}&exactTerms={exactTerms?}&excludeTerms={excludeTerms?}&linkSite={linkSite?}&orTerms={orTerms?}&dateRestrict={dateRestrict?}&lowRange={lowRange?}&highRange={highRange?}&searchType={searchType}&fileType={fileType?}&rights={rights?}&imgSize={imgSize?}&imgType={imgType?}&imgColorType={imgColorType?}&imgDominantColor={imgDominantColor?}&alt=json"
  },
  "queries": {
    "request": [
      {
        "title": "Google Custom Search - Python プログラミング",
        "totalResults": "10200000",
        "searchTerms": "Python プログラミング",
        "count": 5,
        "startIndex": 1,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "10591e335eeaf4a01"
      }
    ],
    "nextPage": [
      {
        "title": "Google Custom Search - Python プログラミング",
        "totalResults": "10200000",
        "searchTerms": "Python プログラミング",
        "count": 5,
        "startIndex": 6,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "10591e335eeaf4a01"
      }
    ]
  },
  "context": {
    "title": "test"
  },
  "searchInformation": {
    "searchTime": 0.451291,
    "formattedSearchTime": "0.45",
    "totalResults": "10200000",
    "formattedTotalResults": "10,200,000"
  },
  "items": [
    {
      "kind": "customsearch#result",
      "title": "Pythonプログラミング入門",
      "htmlTitle": "<b>Pythonプログラミング</b>入門",
      "link": "https://utokyo-ipp.github.io/",
      "displayLink": "utokyo-ipp.github.io",
      "snippet": "Pythonプログラミング入門¶ · 配列の構築 · 配列要素を生成する構築関数 · 練習 · 配列要素の操作 · 要素毎の演算 · よく使われる配列操作 · 配列の保存と復元 · △真理値 ...",
      "htmlSnippet": "<b>Pythonプログラミング</b>入門¶ · 配列の構築 · 配列要素を生成する構築関数 · 練習 · 配列要素の操作 · 要素毎の演算 · よく使われる配列操作 · 配列の保存と復元 · △真理値 ...",
      "formattedUrl": "https://utokyo-ipp.github.io/",
      "htmlFormattedUrl": "https://utokyo-ipp.github.io/",
      "pagemap": {
        "metatags": [
          {
            "viewport": "width=device-width, initial-scale=1.0"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "ゼロからのPython入門講座 - python.jp",
      "htmlTitle": "ゼロからの<b>Python</b>入門講座 - <b>python</b>.jp",
      "link": "https://www.python.jp/train/index.html",
      "displayLink": "www.python.jp",
      "snippet": "このPython入門講座では、プログラミング経験の未経験者・初心者を対象に、ブラウザからPythonを実行できるサービスGoogle Colaboratory(Colab)を使って、Pythonの基礎 ...",
      "htmlSnippet": "この<b>Python</b>入門講座では、<b>プログラミング</b>経験の未経験者・初心者を対象に、ブラウザから<b>Python</b>を実行できるサービスGoogle Colaboratory(Colab)を使って、<b>Python</b>の基礎 ...",
      "formattedUrl": "https://www.python.jp/train/index.html",
      "htmlFormattedUrl": "https://www.<b>python</b>.jp/train/index.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcThoYr1ahD8Yz3of7Z0URMJRUy45EJFv5iyur-lafnrNGob-iB9-eB1yA&s",
            "width": "120",
            "height": "40"
          }
        ],
        "metatags": [
          {
            "og:image": "https://www.python.jp/static/pythonjp/images/logo_red_120.png",
            "og:type": "article",
            "viewport": "width=device-width, initial-scale=1",
            "og:title": "ゼロからのPython入門講座 - python.jp",
            "og:locale": "ja",
            "og:url": "https://www.python.jp/train/index.html",
            "og:description": "このPython入門講座では、プログラミング経験の未経験者・初心者を対象に、ブラウザからPythonを実行できるサービスGoogle Colaboratory(Colab)を使って、Pythonの基礎をチュートリアル形式で解説します。 Colab は、Googl"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.python.jp/static/pythonjp/images/logo_red_120.png"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "Pythonとは?大人気プログラミング言語のメリットや活用事例をご ...",
      "htmlTitle": "<b>Python</b>とは?大人気<b>プログラミング</b>言語のメリットや活用事例をご ...",
      "link": "https://www.internetacademy.jp/it/programming/programming-basic/what-is-python.html",
      "displayLink": "www.internetacademy.jp",
      "snippet": "Feb 8, 2024 ... 「Python (パイソン)」は、今最も注目を集めているプログラミング言語です。その特長として、人工知能(機械学習や深層学習)などの最先端分野の開発に ...",
      "htmlSnippet": "Feb 8, 2024 <b>...</b> 「<b>Python</b> (パイソン)」は、今最も注目を集めている<b>プログラミング</b>言語です。その特長として、人工知能(機械学習や深層学習)などの最先端分野の開発に ...",
      "formattedUrl": "https://www.internetacademy.jp/it/programming/.../what-is-python.html",
      "htmlFormattedUrl": "https://www.internetacademy.jp/it/programming/.../what-is-<b>python</b>.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGFiZfzMrFD05WvUUhRtG_muzotQCYkfSzBEtvV81aEh1m4r0ehUs2q4UU&s",
            "width": "312",
            "height": "162"
          }
        ],
        "organization": [
          {
            "name": "IT業界まるわかりガイド",
            "producer": "Produced By INTERNET ACADEMY",
            "url": "IT業界まるわかりガイドProduced By INTERNET ACADEMY"
          }
        ],
        "metatags": [
          {
            "p:domain_verify": "119ddb486fe6fbefa2cad177ca44d507",
            "viewport": "width=device-width, initial-scale=1.0,  user-scalable=no, initial-scale=1, maximum-scale=1"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.internetacademy.jp/it/images/what-is-python.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "Pythonプログラミング入門 - パイソン学習アプリ - Google Play の ...",
      "htmlTitle": "<b>Pythonプログラミング</b>入門 - パイソン学習アプリ - Google Play の ...",
      "link": "https://play.google.com/store/apps/details?id=jp.co.studyswitch.drillprogramming&hl=ja",
      "displayLink": "play.google.com",
      "snippet": "Oct 23, 2024 ... このアプリはプログラミング言語Python(パイソン)を題材としてプログラミングの重要基本事項を理解することを目標としています。 初学者が途中で挫折する ...",
      "htmlSnippet": "Oct 23, 2024 <b>...</b> このアプリは<b>プログラミング</b>言語<b>Python</b>(パイソン)を題材として<b>プログラミング</b>の重要基本事項を理解することを目標としています。 初学者が途中で挫折する ...",
      "formattedUrl": "https://play.google.com/store/apps/details?id=jp.co.studyswitch...hl=ja",
      "htmlFormattedUrl": "https://play.google.com/store/apps/details?id=jp.co.studyswitch...hl=ja",
      "pagemap": {
        "offer": [
          {
            "price": "0",
            "url": "https://play.google.com/store/apps/details?id=jp.co.studyswitch.drillprogramming&rdid=jp.co.studyswitch.drillprogramming&feature=md&offerId"
          }
        ],
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQebUFF2rU_ldIUF8iAgNbbFa2-rhB7JYzEQak_cIiTgcloy1x811x2TuRs&s",
            "width": "225",
            "height": "225"
          }
        ],
        "metatags": [
          {
            "og:image": "https://play-lh.googleusercontent.com/YSbXunc8W0UV7PXIdApE6wGRuzzLtJ2P4pL68pdQFphOQTCcx8gmTSp9awYy2vNcrIu2",
            "og:type": "website",
            "twitter:card": "summary_large_image",
            "twitter:title": "Pythonプログラミング入門 - パイソン学習アプリ - Google Play のアプリ",
            "twitter:url": "https://play.google.com/store/apps/details?id=jp.co.studyswitch.drillprogramming&hl=ja",
            "appstore:developer_url": "https://www.studyswitch.co.jp/",
            "og:title": "Pythonプログラミング入門 - パイソン学習アプリ - Google Play のアプリ",
            "twitter:image": "https://play-lh.googleusercontent.com/YSbXunc8W0UV7PXIdApE6wGRuzzLtJ2P4pL68pdQFphOQTCcx8gmTSp9awYy2vNcrIu2=w600-h300-pc0xffffff-pd",
            "appstore:bundle_id": "jp.co.studyswitch.drillprogramming",
            "referrer": "origin",
            "twitter:site": "@GooglePlay",
            "appstore:store_id": "jp.co.studyswitch.drillprogramming",
            "viewport": "width=device-width, initial-scale=1",
            "apple-mobile-web-app-capable": "yes",
            "twitter:description": "選択式のクイズに答えていくだけで、知識ゼロからでもPython(パイソン)プログラミングの基礎が身につきます!",
            "mobile-web-app-capable": "yes",
            "og:url": "https://play.google.com/store/apps/details?id=jp.co.studyswitch.drillprogramming&hl=ja"
          }
        ],
        "cse_image": [
          {
            "src": "https://play-lh.googleusercontent.com/YSbXunc8W0UV7PXIdApE6wGRuzzLtJ2P4pL68pdQFphOQTCcx8gmTSp9awYy2vNcrIu2"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "「Pythonプログラミング入門」をApp Storeで",
      "htmlTitle": "「<b>Pythonプログラミング</b>入門」をApp Storeで",
      "link": "https://apps.apple.com/jp/app/python%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9F%E3%83%B3%E3%82%B0%E5%85%A5%E9%96%80/id1540203303",
      "displayLink": "apps.apple.com",
      "snippet": "無料で内容充実のプログラミング学習アプリ! 3択クイズに答えていくだけで、知識ゼロからでもプログラミングの基礎が身につきます。 このアプリはプログラミング ...",
      "htmlSnippet": "無料で内容充実の<b>プログラミング</b>学習アプリ! 3択クイズに答えていくだけで、知識ゼロからでも<b>プログラミング</b>の基礎が身につきます。 このアプリは<b>プログラミング</b> ...",
      "formattedUrl": "https://apps.apple.com/jp/app/pythonプログラミング入門/id1540203303",
      "htmlFormattedUrl": "https://apps.apple.com/jp/app/<b>pythonプログラミング</b>入門/id1540203303",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQktR6BkzovORY6x2XRg0m7xWICOw3fJTWMMkALnysB1H9k71xAJS4Y-d4&s",
            "width": "310",
            "height": "163"
          }
        ],
        "metatags": [
          {
            "og:image": "https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/be/0c/ac/be0cac1e-7b03-5c78-2ce9-0c3ad8fe2de7/AppIcon-0-0-1x_U007emarketing-0-8-0-85-220.png/1200x630wa.png",
            "og:image:width": "1200",
            "twitter:card": "summary_large_image",
            "og:site_name": "App Store",
            "applicable-device": "pc,mobile",
            "og:image:type": "image/png",
            "og:description": "‎無料で内容充実のプログラミング学習アプリ!\n3択クイズに答えていくだけで、知識ゼロからでもプログラミングの基礎が身につきます。\n\nこのアプリはプログラミング言語Python(パイソン)を題材としてプログラミングの重要基本事項を理解することを目標としています。\n初学者が途中で挫折することのないようゼロからのステップアップ方式の構成とし、また、全7章のしっかりした学習内容でありながらも3択クイズに答えるという手軽な学習法を採用しました。\n1.演算と変数\n2.条件分岐if\n3.繰り返しwhile\n4.配列\n5.繰り返しfor\n6.関数\n7.アルゴリズムに挑戦\n\nコード例を用いて基本を分かりやすく解説…",
            "og:image:secure_url": "https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/be/0c/ac/be0cac1e-7b03-5c78-2ce9-0c3ad8fe2de7/AppIcon-0-0-1x_U007emarketing-0-8-0-85-220.png/1200x630wa.png",
            "twitter:image": "https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/be/0c/ac/be0cac1e-7b03-5c78-2ce9-0c3ad8fe2de7/AppIcon-0-0-1x_U007emarketing-0-8-0-85-220.png/1200x600wa.png",
            "web-experience-app/config/environment": "%7B%22appVersion%22%3A1%2C%22modulePrefix%22%3A%22web-experience-app%22%2C%22environment%22%3A%22production%22%2C%22rootURL%22%3A%22%2F%22%2C%22locationType%22%3A%22history-hash-router-scroll%22%2C%22historySupportMiddleware%22%3Atrue%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%2C%22EXTEND_PROTOTYPES%22%3A%7B%22Date%22%3Afalse%7D%2C%22_APPLICATION_TEMPLATE_WRAPPER%22%3Afalse%2C%22_DEFAULT_ASYNC_OBSERVERS%22%3Atrue%2C%22_JQUERY_INTEGRATION%22%3Afalse%2C%22_TEMPLATE_ONLY_GLIMMER_COMPONENTS%22%3Atrue%7D%2C%22APP%22%3A%7B%22PROGRESS_BAR_DELAY%22%3A3000%2C%22CLOCK_INTERVAL%22%3A1000%2C%22LOADING_SPINNER_SPY%22%3Atrue%2C%22BREAKPOINTS%22%3A%7B%22large%22%3A%7B%22min%22%3A1069%2C%22content%22%3A980%7D%2C%22medium%22%3A%7B%22min%22%3A735%2C%22max%22%3A1068%2C%22content%22%3A692%7D%2C%22small%22%3A%7B%22min%22%3A320%2C%22max%22%3A734%2C%22content%22%3A280%7D%7D%2C%22buildVariant%22%3A%22apps%22%2C%22name%22%3A%22web-experience-app%22%2C%22version%22%3A%222450.1.0%2B6799f125%22%7D%2C%22MEDIA_API%22%3A%7B%22token%22%3",
            "twitter:image:alt": "「Pythonプログラミング入門」をApp Storeで",
            "twitter:site": "@AppStore",
            "og:image:alt": "「Pythonプログラミング入門」をApp Storeで",
            "og:type": "website",
            "twitter:title": "‎Pythonプログラミング入門",
            "og:title": "‎Pythonプログラミング入門",
            "og:image:height": "630",
            "version": "2450.1.0",
            "globalnav-search-suggestions-enabled": "false",
            "viewport": "width=device-width, initial-scale=1, viewport-fit=cover",
            "ac-gn-search-suggestions-enabled": "false",
            "twitter:description": "‎無料で内容充実のプログラミング学習アプリ!\n3択クイズに答えていくだけで、知識ゼロからでもプログラミングの基礎が身につきます。\n\nこのアプリはプログラミング言語Python(パイソン)を題材としてプログラミングの重要基本事項を理解することを目標としています。\n初学者が途中で挫折することのないようゼロからのステップアップ方式の構成とし、また、全7章のしっかりした学習内容でありながらも3択クイズに答えるという手軽な学習法を採用しました。\n1.演算と変数\n2.条件分岐if\n3.繰り返しwhile\n4.配列\n5.繰り返しfor\n6.関数\n7.アルゴリズムに挑戦\n\nコード例を用いて基本を分かりやすく解説…",
            "og:locale": "ja_JP",
            "apple:content_id": "1540203303",
            "og:url": "https://apps.apple.com/jp/app/python%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9F%E3%83%B3%E3%82%B0%E5%85%A5%E9%96%80/id1540203303"
          }
        ],
        "cse_image": [
          {
            "src": "https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/be/0c/ac/be0cac1e-7b03-5c78-2ce9-0c3ad8fe2de7/AppIcon-0-0-1x_U007emarketing-0-8-0-85-220.png/1200x630wa.png"
          }
        ]
      }
    }
  ]
}
=== 1 ===
  タイトル: Pythonプログラミング入門
  リンク: https://utokyo-ipp.github.io/
  スニペット: Pythonプログラミング入門¶ · 配列の構築 · 配列要素を生成する構築関数 · 練習 · 配列要素の操作 · 要素毎の演算 · よく使われる配列操作 · 配列の保存と復元 · △真理値 ...
---
=== 2 ===
  タイトル: ゼロからのPython入門講座 - python.jp
  リンク: https://www.python.jp/train/index.html
  スニペット: このPython入門講座では、プログラミング経験の未経験者・初心者を対象に、ブラウザからPythonを実行できるサービスGoogle Colaboratory(Colab)を使って、Pythonの基礎 ...
---
=== 3 ===
  タイトル: Pythonとは?大人気プログラミング言語のメリットや活用事例をご ...
  リンク: https://www.internetacademy.jp/it/programming/programming-basic/what-is-python.html
  スニペット: Feb 8, 2024 ... 「Python (パイソン)」は、今最も注目を集めているプログラミング言語です。その特長として、人工知能(機械学習や深層学習)などの最先端分野の開発に ...
---
=== 4 ===
  タイトル: Pythonプログラミング入門 - パイソン学習アプリ - Google Play の ...
  リンク: https://play.google.com/store/apps/details?id=jp.co.studyswitch.drillprogramming&hl=ja
  スニペット: Oct 23, 2024 ... このアプリはプログラミング言語Python(パイソン)を題材としてプログラミングの重要基本事項を理解することを目標としています。 初学者が途中で挫折する ...
---
=== 5 ===
  タイトル: 「Pythonプログラミング入門」をApp Storeで
  リンク: https://apps.apple.com/jp/app/python%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9F%E3%83%B3%E3%82%B0%E5%85%A5%E9%96%80/id1540203303
  スニペット: 無料で内容充実のプログラミング学習アプリ! 3択クイズに答えていくだけで、知識ゼロからでもプログラミングの基礎が身につきます。 このアプリはプログラミング ...
---

実行結果と検索順位を見比べてみると、検索順位の通りに出力されているのがわかります。そのため、Custom Search JSON APIでもSEO分析ができるかもしれません。

また、ここではCustom Search APIを使用していますが、レスポンスをJSON形式で返すREST APIであるCustom Search APIをCustom Search JSON APIと呼びます。

名前が似ていて混同してしまいますがJSON形式で返すREST APIという点が大切です。

Serper APIとCustom Search JSON APIの比較

Serper APIとCustom Search JSON APIで同じタスクを行わせて、どちらがほしい情報を適切に取得してきてくれるかを比較検証してみたいと思います。

実施するタスクは次の3つです。

  • 最新ニュースの取得
  • 最新論文の取得
  • 新宿区下落合のホテルの料金比較、口コミ調査

最新ニュースの取得

Serper APIにはニュースという項目があるので、ニュースを選択してクエリに2024/12/14と日付を入れました。

その結果が以下です。

Serper APIの結果
{
  "searchParameters": {
    "q": "2024/12/14",
    "gl": "jp",
    "hl": "ja",
    "type": "news",
    "engine": "google"
  },
  "news": [
    {
      "title": "2024/12/14・15第12節vs滋賀レイクス",
      "link": "https://www.velca.jp/lp/game_20241214_20241215/",
      "snippet": "13:00, チケット・ファンクラブ特典受け取りブースオープン. 13:30, VIPゲートOPEN. 14:00, 一般入場. 14:30ごろ, VタイムズLOVERES 第一部放映.",
      "date": "4 時間前",
      "source": "長崎ヴェルカ",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQlJ1bowxas4I70QUXjWjaScU4skMRvCRPGJx_drq3Lie7lTsH4SJbIrNMG3g&s",
      "position": 1
    },
    {
      "title": "明日15日は今年最後の満月 まだ「ふたご座流星群」も観測のチャンス(気象予報士 牧 良幸 2024年12月14日)",
      "link": "https://tenki.jp/forecaster/y_maki/2024/12/14/31751.html",
      "snippet": "明日15日(日)は今年最後の満月となります。また「ふたご座流星群」も見れるチャンスがあり、日本の上空を「きぼう」のある国際宇宙ステーション(ISS)...",
      "date": "11 時間前",
      "source": "tenki.jp",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQyQjyrW19TW46C8eFUNpMdtZJdkYTZicAF7ghCJdFHokFDEGDfm1KOOpxZqA&s",
      "position": 2
    },
    {
      "title": "サガン鳥栖U-15試合結果(12/14)高円宮杯 JFA 第36回全日本U-15サッカー選手権大会 1回戦",
      "link": "https://www.sagan-tosu.net/news/p/36384/",
      "snippet": "【サガン鳥栖U-15試合結果】 <日時>12月14日(土)11:00KO <大会名>高円宮杯 JFA 第36回全日本U-15サッカー選手権大会 1回戦 <対戦>F.C.コーマラント",
      "date": "3 時間前",
      "source": "サガン鳥栖",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvuVaBreJCNT_ZDjbK_s5wMoyZu9sUiG762CNrH_u0EZt5Wk1dpgdsHExncw&s",
      "position": 3
    },
    {
      "title": "有馬幸太郎 選手、大分トリニータへ完全移籍のお知らせ​",
      "link": "https://iwakifc.com/2024/12/14/arimakotaro/",
      "snippet": "このたび、いわきFCは、有馬幸太郎 選手が大分トリニータへ完全移籍することとなりましたので、お知らせします。",
      "date": "8 時間前",
      "source": "いわきFC Official Site",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRniZV_cp3QpMiZlg9mpR3_g00uzvl8KALV4-iiDgk1VJO6wLbQFakp9PGIng&s",
      "position": 4
    },
    {
      "title": "明日15日も日本海側では雪 山沿いでは大雪に注意(気象予報士 牧 良幸 2024年12月14日)",
      "link": "https://tenki.jp/forecaster/y_maki/2024/12/14/31756.html",
      "snippet": "明日15日(日)も、日本海側を中心に雪が続くでしょう。山沿いでは大雪になる所もありそうです。屋根からの落雪や路面の凍結などに注意してください。",
      "date": "5 時間前",
      "source": "tenki.jp",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5R4XZ6-A_sHjMzGKKl9DdqlILJyVrI6M85dXkqrL0Sx1F8VuVXyJnXPnm6A&s",
      "position": 5
    },
    {
      "title": "師走の寒さ続く 東京では朝の気温が3℃前後 寒さ対策は万全に(気象予報士 牧 良幸 2024年12月14日)",
      "link": "https://tenki.jp/forecaster/y_maki/2024/12/14/31755.html",
      "snippet": "この先も寒気の影響で日本列島は師走らしい寒さが続くでしょう。北海道を中心に真冬日(最高気温0℃未満)があり、東京も朝は冷え込みが強くなりそうです...",
      "date": "6 時間前",
      "source": "tenki.jp",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTDffzhbVN6h8uEzfYju86aj-esGkdVJ7vM-hmvJyHIYeFO7zT2jU3HCRe5WQ&s",
      "position": 6
    },
    {
      "title": "14~15日 日本海側は大雪に警戒 交通に影響の恐れ 西日本の平地も積雪の可能性(気象予報士 吉田 友海 2024年12月14日)",
      "link": "https://tenki.jp/forecaster/t_yoshida/2024/12/14/31748.html",
      "snippet": "今日14日(土)から明日15日(日)にかけて冬型の気圧配置が強まり、平地に雪を降らせる目安の寒気が西日本まで南下するでしょう。北海道の日本海側から...",
      "date": "16 時間前",
      "source": "tenki.jp",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRwP0T6NZXmJvEDBmjg2cEl58LxlkMiJPD3TukSHVbWqg9VnW_Nm9UO1d1-Gg&s",
      "position": 7
    },
    {
      "title": "2週間天気 厳しい寒さも そんな中で台風発生の可能性 寒さ一時的に緩む見解も(気象予報士 白石 圭子 2024年12月14日)",
      "link": "https://tenki.jp/forecaster/k_shiraishi/2024/12/14/31752.html",
      "snippet": "クリスマス頃にかけても、冬型の気圧配置が持続し、日本海側を中心に雪が降りやすいでしょう。太平洋側では晴れ間が出る日が多い見込みです。",
      "date": "6 時間前",
      "source": "tenki.jp",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQwgb0i6jjETNfnLVV1oJYD6lX_tRH_7S5Q1CRVnvgybnJaVdMqU6w_uXSSQg&s",
      "position": 8
    },
    {
      "title": "北海道 上空に寒気居座る 雪や寒さが続く一週間に(気象予報士 佐藤 雅義 2024年12月14日)",
      "link": "https://tenki.jp/forecaster/masayoshi_satou/2024/12/14/31754.html",
      "snippet": "北海道付近は、この先一週間程度は冬型の気圧配置となる日が多く、日本海側では北部を中心に雪の降りやすい状況が続くでしょう。また、上空には強い...",
      "date": "6 時間前",
      "source": "tenki.jp",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRrqXghEAy9_smdBCvK7SjvE7WTgissm8Sf8SJO5PvGMNaFxbklYvBtvZR-Hg&s",
      "position": 9
    },
    {
      "title": "【動画】【ハイライト】【皇后杯】準決勝 富士通 vs デンソー(2024.12.14) - スポーツナビ「【女子バスケ】W LEAGUE」",
      "link": "https://sports.yahoo.co.jp/video/player/18092264",
      "snippet": "2024年12月14日に行われた第91回皇后杯 ファイナルラウンド準決勝 富士通 vs デンソーの試合ハイライトです。試合会場:国立代々木競技場 第二体育館.",
      "date": "2 時間前",
      "source": "スポーツナビ",
      "imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT4HNLGlHLgablH_6tx-PfM5Snyu8I-zBuRqXmdxdPYw4AZIc-YryLa_ijSjA&s",
      "position": 10
    }
  ],
  "credits": 1
}
Custom Search JSON APIの結果
{
  "kind": "customsearch#search",
  "url": {
    "type": "application/json",
    "template": "https://www.googleapis.com/customsearch/v1?q={searchTerms}&num={count?}&start={startIndex?}&lr={language?}&safe={safe?}&cx={cx?}&sort={sort?}&filter={filter?}&gl={gl?}&cr={cr?}&googlehost={googleHost?}&c2coff={disableCnTwTranslation?}&hq={hq?}&hl={hl?}&siteSearch={siteSearch?}&siteSearchFilter={siteSearchFilter?}&exactTerms={exactTerms?}&excludeTerms={excludeTerms?}&linkSite={linkSite?}&orTerms={orTerms?}&dateRestrict={dateRestrict?}&lowRange={lowRange?}&highRange={highRange?}&searchType={searchType}&fileType={fileType?}&rights={rights?}&imgSize={imgSize?}&imgType={imgType?}&imgColorType={imgColorType?}&imgDominantColor={imgDominantColor?}&alt=json"
  },
  "queries": {
    "request": [
      {
        "title": "Google Custom Search - 2024/12/14のニュース",
        "totalResults": "11090000000",
        "searchTerms": "2024/12/14のニュース",
        "count": 10,
        "startIndex": 1,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "10591e335eeaf4a01"
      }
    ],
    "nextPage": [
      {
        "title": "Google Custom Search - 2024/12/14のニュース",
        "totalResults": "11090000000",
        "searchTerms": "2024/12/14のニュース",
        "count": 10,
        "startIndex": 11,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "10591e335eeaf4a01"
      }
    ]
  },
  "context": {
    "title": "test"
  },
  "searchInformation": {
    "searchTime": 0.544478,
    "formattedSearchTime": "0.54",
    "totalResults": "11090000000",
    "formattedTotalResults": "11,090,000,000"
  },
  "items": [
    {
      "kind": "customsearch#result",
      "title": "12/14(土)「ヴィッセル神戸 ... - ヴィッセル神戸 ニュース/レポート",
      "htmlTitle": "12/14(土)「ヴィッセル神戸 ... - ヴィッセル神戸 ニュース/レポート",
      "link": "https://www.vissel-kobe.co.jp/news/article/24144.html",
      "displayLink": "www.vissel-kobe.co.jp",
      "snippet": "3 days ago ... このたび、2024年12月14日(土)ハーバーランド内スペースシアターにて、2024シーズン「天皇杯優勝」「J1リーグ連覇」の報告会を実施することが決定しま ...",
      "htmlSnippet": "3 days ago <b>...</b> このたび、<b>2024年12月14日(土</b>)ハーバーランド内スペースシアターにて、2024シーズン「天皇杯優勝」「J1リーグ連覇」の報告会を実施することが決定しま ...",
      "formattedUrl": "https://www.vissel-kobe.co.jp/news/article/24144.html",
      "htmlFormattedUrl": "https://www.vissel-kobe.co.jp/news/article/24144.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRIQDuDwhS0tjibPWbvYZw9EHrrzQ6JlnxsLWCG29scMt3TaD9W7RL60pI&s",
            "width": "300",
            "height": "168"
          }
        ],
        "metatags": [
          {
            "og:image": "https://www.vissel-kobe.co.jp/pic_img/news/0000024144_1.jpg",
            "og:type": "article",
            "twitter:card": "summary_large_image",
            "og:site_name": "ヴィッセル神戸オフィシャルサイト",
            "viewport": "width=device-width, maximum-scale=1, user-scalable=0",
            "og:title": "12/14(土)「ヴィッセル神戸 2024天皇杯優勝・J1リーグ連覇報告会」開催決定のお知らせ",
            "og:locale": "ja_JP",
            "og:url": "https://www.vissel-kobe.co.jp/news/article/24144.html",
            "og:description": "ヴィッセル神戸に関する最新情報をご覧いただけます。"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.vissel-kobe.co.jp/pic_img/news/0000024144_1.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "NPR News Now : NPR",
      "htmlTitle": "NPR <b>News</b> Now : NPR",
      "link": "https://www.npr.org/podcasts/500005/npr-news-now",
      "displayLink": "www.npr.org",
      "snippet": "Most Recent Episodes · NPR News: 12-14-2024 3AM EST · NPR News: 12-14-2024 2AM EST · NPR News: 12-14-2024 1AM EST · NPR News: 12-14-2024 12AM EST · NPR News: 12-13- ...",
      "htmlSnippet": "Most Recent Episodes · NPR <b>News</b>: <b>12-14-2024 3AM EST</b> · NPR <b>News</b>: <b>12-14-2024 2AM EST</b> · NPR <b>News</b>: <b>12-14-2024 1AM EST</b> · NPR <b>News</b>: <b>12-14-2024 12AM EST</b> · NPR <b>News</b>: 12-13- ...",
      "formattedUrl": "https://www.npr.org/podcasts/500005/npr-news-now",
      "htmlFormattedUrl": "https://www.npr.org/podcasts/500005/npr-news-now",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQxNEAMqOLSivTdU3GGrO62GQd6kDjTni-X_mv1nWTIEtpueLOdLQ7OR1A&s",
            "width": "300",
            "height": "168"
          }
        ],
        "speakablespecification": [
          {
            "cssselector": "[data-is-speakable]"
          }
        ],
        "metatags": [
          {
            "date": "2024-12-14",
            "apple-itunes-app": "app-id=324906251, app-argument=https://www.npr.org/podcasts/500005/npr-news-now",
            "og:image": "https://media.npr.org/assets/img/2023/03/01/npr-news-now_wide.png?s=1400&c=100",
            "og:type": "article",
            "twitter:card": "summary_large_image",
            "twitter:title": "NPR News Now",
            "og:site_name": "NPR",
            "cxenseparse:pageclass": "frontpage",
            "twitter:domain": "npr.org",
            "cxenseparse:publishtime": "2024-12-14T03:10:32-05:00",
            "og:title": "NPR News Now",
            "rating": "General",
            "og:description": "The latest news in five minutes. Updated hourly.",
            "fb:pages": "10643211755",
            "twitter:image:src": "https://media.npr.org/assets/img/2023/03/01/npr-news-now_wide.png?s=1400&c=100",
            "fb:app_id": "138837436154588",
            "cxenseparse:author": "NPR",
            "twitter:site": "@NPR",
            "viewport": "width=device-width, initial-scale=1, shrink-to-fit=no",
            "article:content_tier": "free",
            "og:url": "https://www.npr.org/podcasts/500005/npr-news-now",
            "article:opinion": "false"
          }
        ],
        "cse_image": [
          {
            "src": "https://media.npr.org/assets/img/2023/03/01/npr-news-now_wide.png?s=1400&c=100"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "2024 NCAA volleyball tournament: Bracket, schedule, scores for the ...",
      "htmlTitle": "<b>2024</b> NCAA volleyball tournament: Bracket, schedule, scores for the ...",
      "link": "https://www.ncaa.com/news/volleyball-women/article/2024-12-13/2024-ncaa-volleyball-tournament-bracket-schedule-scores-di-womens-championship",
      "displayLink": "www.ncaa.com",
      "snippet": "NCAA.com | December 14, 2024. 2024 NCAA volleyball tournament: Bracket, schedule, scores for the DI women's championship. Full 5th set from Pittsburgh- ...",
      "htmlSnippet": "NCAA.com | <b>December 14, 2024</b>. 2024 NCAA volleyball tournament: Bracket, schedule, scores for the DI women's championship. Full 5th set from Pittsburgh- ...",
      "formattedUrl": "https://www.ncaa.com/.../2024-ncaa-volleyball-tournament-bracket-schedul...",
      "htmlFormattedUrl": "https://www.ncaa.com/.../2024-ncaa-volleyball-tournament-bracket-schedul...",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTxbKG-PulrQxhFIWGfI2k7HuPkoTlF_LhZvtgMFVKTP_P0mnf323LA-nMN&s",
            "width": "300",
            "height": "168"
          }
        ],
        "metatags": [
          {
            "msapplication-tilecolor": "#35669d",
            "image": "https://www.ncaa.com/_flysystem/public-s3/styles/large_16x9/public-s3/images/2024-12/DI-WVB-updated-bracket.jpg?h=bb751cdb&itok=JI7qCxcy",
            "og:image": "https://www.ncaa.com/_flysystem/public-s3/styles/large_16x9/public-s3/images/2024-12/DI-WVB-updated-bracket.jpg?h=bb751cdb&itok=JI7qCxcy",
            "og:type": "article",
            "twitter:title": "2024 NCAA volleyball tournament: Bracket, schedule, scores for the DI women's championship",
            "twitter:card": "summary_large_image",
            "theme-color": "#ffffff",
            "twitter:site:id": "31122496",
            "og:site_name": "NCAA.com",
            "handheldfriendly": "true",
            "twitter:url": "https://www.ncaa.com/news/volleyball-women/article/2024-12-13/2024-ncaa-volleyball-tournament-bracket-schedule-scores-di-womens-championship",
            "og:title": "2024 NCAA volleyball tournament: Bracket, schedule, scores for the DI women's championship",
            "abstract": "The 2024 NCAA DI women's volleyball championship semifinals and finals are Dec. 19 and 22 at the KFC Yum! Center in Louisville, Kentucky. Get tournament information right here, from selections to the national championship.",
            "title": "2024 NCAA volleyball tournament: Bracket, schedule, scores for the DI women's championship | NCAA.com",
            "og:description": "The 2024 NCAA DI women's volleyball championship semifinals and finals are Dec. 19 and 22 at the KFC Yum! Center in Louisville, Kentucky. Get tournament information right here, from selections to the national championship.",
            "url": "https://www.ncaa.com/news/volleyball-women/article/2024-12-13/2024-ncaa-volleyball-tournament-bracket-schedule-scores-di-womens-championship",
            "twitter:image": "https://www.ncaa.com/_flysystem/public-s3/styles/large_16x9/public-s3/images/2024-12/DI-WVB-updated-bracket.jpg?h=bb751cdb&itok=JI7qCxcy",
            "twitter:image:alt": "Here is the 2024 DI women's volleyball tournament bracket",
            "twitter:site": "@NCAA",
            "viewport": "width=device-width, initial-scale=1.0",
            "twitter:description": "The 2024 NCAA DI women's volleyball championship semifinals and finals are Dec. 19 and 22 at the KFC Yum! Center in Louisville, Kentucky. Get tournament information right here, from selections to the national championship.",
            "mobileoptimized": "width",
            "og:url": "https://www.ncaa.com/news/volleyball-women/article/2024-12-13/2024-ncaa-volleyball-tournament-bracket-schedule-scores-di-womens-championship",
            "provider_name": "NCAA.com"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.ncaa.com/_flysystem/public-s3/styles/large_16x9/public-s3/images/2024-12/DI-WVB-updated-bracket.jpg?h=bb751cdb&itok=JI7qCxcy"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "Route 961 – Hampton Roads Transit",
      "htmlTitle": "Route 961 – Hampton Roads Transit",
      "link": "https://gohrt.com/route/961/",
      "displayLink": "gohrt.com",
      "snippet": "... Dec 14 2024 @ 12:00am. Routes 14 and 58: Chesapeake Fa La La Land. Effective ... NEWPORT NEWS TRANSIT CENTER. NORTH GATE GRUMMAN SHELTER. WASHINGTON & 49TH.",
      "htmlSnippet": "... <b>Dec 14 2024 @ 12:00am</b>. Routes 14 and 58: Chesapeake Fa La La Land. Effective ... NEWPORT <b>NEWS</b> TRANSIT CENTER. NORTH GATE GRUMMAN SHELTER. WASHINGTON & 49TH.",
      "formattedUrl": "https://gohrt.com/route/961/",
      "htmlFormattedUrl": "https://gohrt.com/route/961/",
      "pagemap": {
        "metatags": [
          {
            "twitter:card": "summary",
            "twitter:title": "961",
            "og:site_name": "Hampton Roads Transit",
            "viewport": "width=device-width",
            "x-recruiting": "If you're seeing this, check out our tech job opportunities! http://gohrt.com/careers/technology/",
            "author": "Hampton Roads Transit",
            "og:title": "961",
            "og:locale": "en_US",
            "og:url": "https://gohrt.com/route/961/"
          }
        ],
        "Breadcrumb": [
          {
            "title": "Home",
            "url": "Home"
          },
          {
            "title": "Routes",
            "url": "Routes"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "Daily Incidents",
      "htmlTitle": "Daily Incidents",
      "link": "https://www.hamiltoncounty.in.gov/DailyIncidents",
      "displayLink": "www.hamiltoncounty.in.gov",
      "snippet": "2024-00057121, Fishers Police. 12/14/2024 12:28:00 AM, 11500 BLK BROOKS FARM BLVD, P Noise Complaint, 2024-00047505, Noblesville Police. 12/14/2024 12:25:00 AM ...",
      "htmlSnippet": "<b>2024</b>-00057121, Fishers Police. <b>12</b>/<b>14</b>/<b>2024 12</b>:28:00 AM, 11500 BLK BROOKS FARM BLVD, P Noise Complaint, <b>2024</b>-00047505, Noblesville Police. <b>12</b>/<b>14</b>/<b>2024 12</b>:25:00 AM ...",
      "formattedUrl": "https://www.hamiltoncounty.in.gov/DailyIncidents",
      "htmlFormattedUrl": "https://www.hamiltoncounty.in.gov/DailyIncidents",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTVJcBmufZz8zC_OCDWWXyH-h1DSWh8HbXl-by3NKymTf7MsZw1t9-HNw&s",
            "width": "302",
            "height": "100"
          }
        ],
        "metatags": [
          {
            "viewport": "width=device-width,target-densityDpi=device-dpi, initial-scale=1"
          }
        ],
        "cse_image": [
          {
            "src": "https://secure2.hamiltoncounty.in.gov/DailyIncidents/images/header/CountyLogo2020_100.png"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "News and Events | City of Sammamish",
      "htmlTitle": "<b>News</b> and Events | City of Sammamish",
      "link": "https://www.sammamish.us/news/",
      "displayLink": "www.sammamish.us",
      "snippet": "This presentation highlighted the impacts of the storm along with the City's response. promoted · Sammamish Storm Debris Collection Event – Dec. 14, 2024.",
      "htmlSnippet": "This presentation highlighted the impacts of the storm along with the City's response. promoted · Sammamish Storm Debris Collection Event – <b>Dec. 14, 2024</b>.",
      "formattedUrl": "https://www.sammamish.us/news/",
      "htmlFormattedUrl": "https://www.sammamish.us/news/",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTg-i7Fjd8nZoM7YUyjLFcaHFyZ1c89WeaKurPmZTqgDfYz-i5Ew5UGRKg&s",
            "width": "299",
            "height": "168"
          }
        ],
        "postaladdress": [
          {
            "name": "Communications Department",
            "email": "communications@sammamish.us"
          },
          {
            "addresslocality": "Sammamish",
            "postalcode": "98075",
            "addressregion": "WA",
            "streetaddress": "801 228th Avenue SE"
          }
        ],
        "metatags": [
          {
            "msapplication-tilecolor": "#1b5680",
            "msapplication-config": "http://localhost:8080/msapplication.xml",
            "viewport": "width=device-width, initial-scale=1.0, user-scalable=0",
            "msapplication-tileimage": "/static/mstile-144x144.png"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.sammamish.us/media/fx2h2an1/lower-evans-creek-cover-photo.jpg"
          }
        ],
        "article": [
          {
            "name": "News and Events"
          }
        ],
        "civicstructure": [
          {
            "hasmap": "Directions",
            "openinghours": "Mo-Fr 08:30-17:00",
            "name": "Sammamish City Hall:",
            "telephone": "Phone: (425) 295 0500",
            "smokingallowed": "false",
            "publicaccess": "true"
          },
          {
            "openinghours": "Mo-Fr 09:00-12:00",
            "name": "Permit Center",
            "telephone": "(425) 295 0531"
          },
          {
            "openinghours": "Mo 09:00-12:30",
            "name": "Cashiering",
            "telephone": "(425) 295 0500"
          },
          {
            "openinghours": "Mo-Su 00:00-23:59",
            "name": "Public Works After-hours Dispatch",
            "telephone": "(425) 295 0700",
            "publicaccess": "false"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "NEWS",
      "htmlTitle": "<b>NEWS</b>",
      "link": "https://english.www.gov.cn/news",
      "displayLink": "english.www.gov.cn",
      "snippet": "Chinese vice premier meets French president's diplomatic adviser. 2024/12/14. Yangling deepens trade cooperation with SCO nations. 2024/12/14 ...",
      "htmlSnippet": "Chinese vice premier meets French president's diplomatic adviser. <b>2024/12/14</b>. Yangling deepens trade cooperation with SCO nations. <b>2024/12/14</b> ...",
      "formattedUrl": "https://english.www.gov.cn/news",
      "htmlFormattedUrl": "https://english.www.gov.cn/news",
      "pagemap": {
        "metatags": [
          {
            "pagetype": "2",
            "filetype": "0",
            "viewport": "width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=no",
            "publishedtype": "1",
            "catalog": "en_5d076470c6d0129ab8832a93"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "SIU News",
      "htmlTitle": "SIU <b>News</b>",
      "link": "https://news.siu.edu/",
      "displayLink": "news.siu.edu",
      "snippet": "News. Southern Illinois University | Saturday, December 14, 2024. Tactical Navigation. For the Media · News Archive · Contact Us. Navigation. Menu expand menu.",
      "htmlSnippet": "<b>News</b>. Southern Illinois University | <b>Saturday, December 14, 2024</b>. Tactical Navigation. For the Media · <b>News</b> Archive · Contact Us. Navigation. Menu expand menu.",
      "formattedUrl": "https://news.siu.edu/",
      "htmlFormattedUrl": "https://news.siu.edu/",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSTn56bU85XOhr295Ac-vikgEyOD_QNZM_dmaREjEnMbP7qCSx7bcyQNd6r&s",
            "width": "300",
            "height": "168"
          }
        ],
        "metatags": [
          {
            "viewport": "width=device-width, initial-scale=1.0"
          }
        ],
        "cse_image": [
          {
            "src": "https://news.siu.edu/_assets/images/2024/12/zeneya-scott-rb-049-sm.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "Glee Club and Symphony Orchestra Christmas At Notre Dame ...",
      "htmlTitle": "Glee Club and Symphony Orchestra Christmas At Notre Dame ...",
      "link": "https://music.nd.edu/news-events/events/2024/12/14/glee-club-and-symphony-orchestra-christmas-at-notre-dame/",
      "displayLink": "music.nd.edu",
      "snippet": "... Events & News ›; Events ›; Glee Club and Symphony Orchestra Christmas At Notre ... Glee Club and Symphony Orchestra Christmas At Notre Dame. Sat Dec 14 ...",
      "htmlSnippet": "... Events & <b>News</b> ›; Events ›; Glee Club and Symphony Orchestra Christmas At Notre ... Glee Club and Symphony Orchestra Christmas At Notre Dame. <b>Sat Dec 14</b> ...",
      "formattedUrl": "https://music.nd.edu/.../glee-club-and-symphony-orchestra-christmas-at-not...",
      "htmlFormattedUrl": "https://music.nd.edu/.../glee-club-and-symphony-orchestra-christmas-at-not...",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYzNQqzLZmtJB7vxnoOz8trzsbwXjZCRVNNtfNkhTx6C6P_m_u56D4wS44&s",
            "width": "225",
            "height": "225"
          }
        ],
        "Organization": [
          {
            "noopener": "music@nd.edu",
            "name": "Department of Music",
            "faxNumber": "+1 574-631-4539",
            "telephone": "+1 574-631-6211",
            "parentOrganization": "University of Notre Dame",
            "email": "music@nd.edu",
            "url": "Department of Music"
          }
        ],
        "Event": [
          {
            "image": "Ndso Ndgc Christmas Web",
            "endDate": "2024-12-14T21:30-05:00",
            "name": "Glee Club and Symphony Orchestra Christmas At Notre Dame",
            "description": "The Glee Club and Symphony Orchestra present a festive array of classical and popular music for the season. Concerts on Saturday, December 14, 8:30 PM and Sunday, December 15, 2:30 PM. For...",
            "startDate": "2024-12-14T20:30-05:00"
          }
        ],
        "hcalendar": [
          {
            "summary": "Glee Club and Symphony Orchestra Christmas At Notre Dame",
            "description": "The Glee Club and Symphony Orchestra present a festive array of classical and popular music for the season. Concerts on Saturday, December 14, 8:30 PM and Sunday, December 15, 2:30 PM. For...",
            "photo": "Ndso Ndgc Christmas Web",
            "dtend": "2024-12-14T21:30-05:00",
            "dtstart": "2024-12-14T20:30-05:00"
          }
        ],
        "metatags": [
          {
            "application-name": "Department of Music",
            "twitter:card": "summary",
            "og:type": "website",
            "theme-color": "#081629",
            "og:site_name": "Department of Music",
            "author": "Marketing Communications: Web | University of Notre Dame",
            "apple-mobile-web-app-title": "Department of Music",
            "og:title": "Glee Club and Symphony Orchestra Christmas At Notre Dame",
            "twitter:creator": "@ndwebteam",
            "twitter:image": "https://music.nd.edu/assets/495793/1600x630/ndso_ndgc_christmas_web.jpg",
            "url": "https://static.nd.edu/images/webclips/default/webclip-60.png",
            "twitter:site": "@notredame",
            "viewport": "width=device-width, initial-scale=1, shrink-to-fit=no",
            "og:locale": "en_US",
            "name": "University of Notre Dame",
            "parentorganization": "University of Notre Dame",
            "og:url": "https://music.nd.edu/news-events/events/2024/12/14/glee-club-and-symphony-orchestra-christmas-at-notre-dame/"
          }
        ],
        "cse_image": [
          {
            "src": "https://music.nd.edu/assets/495793/600x/ndso_ndgc_christmas_web.jpg"
          }
        ],
        "event": [
          {
            "summary": "Glee Club and Symphony Orchestra Christmas At Notre Dame",
            "dtend": "2024-12-14T21:30-05:00",
            "dtstart": "2024-12-14T20:30-05:00"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "DW: News and current affairs from Germany and around the world",
      "htmlTitle": "DW: <b>News</b> and current affairs from Germany and around the world",
      "link": "https://www.dw.com/en/top-stories/s-9097",
      "displayLink": "www.dw.com",
      "snippet": "Top stories in 90 seconds · DW brings you the top international news stories in brief. 12/14/2024 ...",
      "htmlSnippet": "Top stories in 90 seconds · DW brings you the top international <b>news</b> stories in brief. <b>12/14/2024</b> ...",
      "formattedUrl": "https://www.dw.com/en/top-stories/s-9097",
      "htmlFormattedUrl": "https://www.dw.com/en/top-stories/s-9097",
      "pagemap": {
        "metatags": [
          {
            "theme-color": "#000000",
            "og:site_name": "dw.com",
            "viewport": "width=device-width, initial-scale=1, shrink-to-fit=no",
            "og:title": "News and current affairs from Germany and around the world – DW",
            "fb:admins": "100000944106340",
            "og:url": "https://www.dw.com/en/top-stories/s-9097",
            "og:description": "News, off-beat stories and analysis of German and international affairs. Dive deeper with our features from Europe and beyond. Watch our 24/7 TV stream.",
            "fb:pages": "146634408702997"
          }
        ]
      }
    }
  ]
}
=== 1 ===
  タイトル: 12/14(土)「ヴィッセル神戸 ... - ヴィッセル神戸 ニュース/レポート
  リンク: https://www.vissel-kobe.co.jp/news/article/24144.html
  スニペット: 3 days ago ... このたび、2024年12月14日(土)ハーバーランド内スペースシアターにて、2024シーズン「天皇杯優勝」「J1リーグ連覇」の報告会を実施することが決定しま ...
---
=== 2 ===
  タイトル: NPR News Now : NPR
  リンク: https://www.npr.org/podcasts/500005/npr-news-now
  スニペット: Most Recent Episodes · NPR News: 12-14-2024 3AM EST · NPR News: 12-14-2024 2AM EST · NPR News: 12-14-2024 1AM EST · NPR News: 12-14-2024 12AM EST · NPR News: 12-13- ...
---
=== 3 ===
  タイトル: 2024 NCAA volleyball tournament: Bracket, schedule, scores for the ...
  リンク: https://www.ncaa.com/news/volleyball-women/article/2024-12-13/2024-ncaa-volleyball-tournament-bracket-schedule-scores-di-womens-championship
  スニペット: NCAA.com | December 14, 2024. 2024 NCAA volleyball tournament: Bracket, schedule, scores for the DI women's championship. Full 5th set from Pittsburgh- ...
---
=== 4 ===
  タイトル: Route 961 – Hampton Roads Transit
  リンク: https://gohrt.com/route/961/
  スニペット: ... Dec 14 2024 @ 12:00am. Routes 14 and 58: Chesapeake Fa La La Land. Effective ... NEWPORT NEWS TRANSIT CENTER. NORTH GATE GRUMMAN SHELTER. WASHINGTON & 49TH.
---
=== 5 ===
  タイトル: Daily Incidents
  リンク: https://www.hamiltoncounty.in.gov/DailyIncidents
  スニペット: 2024-00057121, Fishers Police. 12/14/2024 12:28:00 AM, 11500 BLK BROOKS FARM BLVD, P Noise Complaint, 2024-00047505, Noblesville Police. 12/14/2024 12:25:00 AM ...
---
=== 6 ===
  タイトル: News and Events | City of Sammamish
  リンク: https://www.sammamish.us/news/
  スニペット: This presentation highlighted the impacts of the storm along with the City's response. promoted · Sammamish Storm Debris Collection Event – Dec. 14, 2024.
---
=== 7 ===
  タイトル: NEWS
  リンク: https://english.www.gov.cn/news
  スニペット: Chinese vice premier meets French president's diplomatic adviser. 2024/12/14. Yangling deepens trade cooperation with SCO nations. 2024/12/14 ...
---
=== 8 ===
  タイトル: SIU News
  リンク: https://news.siu.edu/
  スニペット: News. Southern Illinois University | Saturday, December 14, 2024. Tactical Navigation. For the Media · News Archive · Contact Us. Navigation. Menu expand menu.
---
=== 9 ===
  タイトル: Glee Club and Symphony Orchestra Christmas At Notre Dame ...
  リンク: https://music.nd.edu/news-events/events/2024/12/14/glee-club-and-symphony-orchestra-christmas-at-notre-dame/
  スニペット: ... Events & News ›; Events ›; Glee Club and Symphony Orchestra Christmas At Notre ... Glee Club and Symphony Orchestra Christmas At Notre Dame. Sat Dec 14 ...
---
=== 10 ===
  タイトル: DW: News and current affairs from Germany and around the world
  リンク: https://www.dw.com/en/top-stories/s-9097
  スニペット: Top stories in 90 seconds · DW brings you the top international news stories in brief. 12/14/2024 ...
---

Serper APIの方は適切に2024/12/14のニュースを取得してきてくれました

Custom Search JSON APIも2024/12/14のニュースを取得してきてくれてはいますが、ポッドキャストや海外のニュースも含まれており、ユーザーがほしいものを適切に出力できていないように感じます。

最新論文の取得

次に最新論文の取得をします。こちらもSerperには論文という項目があるので、そちらを使って検索をします。

一方でCustom Search JSON APIにはscalarの検索項目がないので「2024/12/14の論文」と入力して検索をしました。

Serperの結果はこちら
{
  "searchParameters": {
    "q": "2024/12/14",
    "gl": "jp",
    "hl": "ja",
    "type": "scholar",
    "engine": "google-scholar"
  },
  "organic": [
    {
      "title": "Effect of a 12-Week Strength Training Program on Muscle Strength Measures of Institutionalized Older Adults—A Pilot Study",
      "link": "https://www.mdpi.com/2227-9032/12/14/1428",
      "publicationInfo": "B Pereira, D Monteiro, R Matos, M Jacinto, N Amaro… - Healthcare, 2024 - mdpi.com",
      "snippet": "Institutionalized older adults are characterized by high levels of dependence and low levels of physical activity compared to those living in the community. This combination of factors …",
      "year": 2024,
      "citedBy": 2
    },
    {
      "title": "Body perceptions and psychological well-being: A review of the impact of social media and physical measurements on self-esteem and mental health with a …",
      "link": "https://www.mdpi.com/2227-9032/12/14/1396",
      "publicationInfo": "M Merino, JF Tornero-Aguilera, A Rubio-Zarapuz… - Healthcare, 2024 - mdpi.com",
      "snippet": "This narrative review examines the interplay among body image perceptions, social media influence, physical measurements, and their impact on psychological well-being, focusing on …",
      "year": 2024,
      "citedBy": 28
    },
    {
      "title": "Design and analysis of a novel fractional-order system with hidden dynamics, hyperchaotic behavior and multi-scroll attractors",
      "link": "https://www.mdpi.com/2227-7390/12/14/2227",
      "publicationInfo": "F Yu, S Xu, Y Lin, T He, C Wu, H Lin - Mathematics, 2024 - mdpi.com",
      "snippet": "The design of chaotic systems with complex dynamic behaviors has always been a key aspect of chaos theory in engineering applications. This study introduces a novel fractional-order …",
      "year": 2024,
      "citedBy": 4
    },
    {
      "title": "Effectiveness of harm reduction interventions in Chemsex: A systematic review",
      "link": "https://www.mdpi.com/2227-9032/12/14/1411",
      "publicationInfo": "PD Pozo-Herce, A Martínez-Sabater… - Healthcare, 2024 - mdpi.com",
      "snippet": "The phenomenon of chemsex has emerged as an essential public health issue in recent years. This systematic review aimed to investigate currently available harm reduction strategies …",
      "year": 2024,
      "citedBy": 3
    },
    {
      "title": "Impact of Nonsurgical Periodontal Treatment of Periodontitis Stages 2 and 3 on Oral Health-Related Quality of Life",
      "link": "https://www.mdpi.com/2227-9032/12/14/1430",
      "publicationInfo": "AJB Al-Sharqi, AA Abdulkareem, S Gul, A Rawlinson - Healthcare, 2024 - mdpi.com",
      "snippet": "This study investigates the impact of nonsurgical periodontal treatment (NSPT) on oral health-related quality of life (OHRQoL) in patients with periodontitis stages (S)2 and S3, and the …",
      "year": 2024,
      "citedBy": 1
    },
    {
      "title": "Trajectory Tracking Control of an Autonomous Vessel in the Presence of Unknown Dynamics and Disturbances",
      "link": "https://www.mdpi.com/2227-7390/12/14/2239",
      "publicationInfo": "C Aguilar-Ibanez, MS Suarez-Castanon… - Mathematics, 2024 - mdpi.com",
      "snippet": "We present a proportional–integral–derivative-based controller plus an adaptive slide surface to solve the trajectory tracking control problem for a fully actuated vessel with unknown …",
      "year": 2024,
      "citedBy": 4
    },
    {
      "title": "A Post-Implanto-Prosthetic Rehabilitation Study Regarding the Degree of Improvement in Patients' Quality of Life: A Before–After Study",
      "link": "https://www.mdpi.com/2227-9032/12/14/1378",
      "publicationInfo": "CI Lixandru, I Maniu, MM Cernușcă-Mițariu… - Healthcare, 2024 - mdpi.com",
      "snippet": "Background: Implant–prosthetic rehabilitation has the ability to improve the quality of life of patients, because, in addition to the role of restoring masticatory function, they also have …",
      "year": 2024,
      "citedBy": 2
    },
    {
      "title": "Exploring injury prevention strategies for futsal players: a systematic review",
      "link": "https://www.mdpi.com/2227-9032/12/14/1387",
      "publicationInfo": "JP Oliveira, T Sampaio, DA Marinho, TM Barbosa… - Healthcare, 2024 - mdpi.com",
      "snippet": "Futsal carries a high risk of injury for players. This systematic review aimed to assess the existing literature on injury prevention strategies for futsal players. The literature was searched …",
      "year": 2024,
      "citedBy": 2
    },
    {
      "title": "Sequential impact of diabetes mellitus on deep neck infections: comparison of the clinical characteristics of patients with and without diabetes mellitus",
      "link": "https://www.mdpi.com/2227-9032/12/14/1383",
      "publicationInfo": "TI Liao, CY Ho, SC Chin, YC Wang, KC Chan, SL Chen - Healthcare, 2024 - mdpi.com",
      "snippet": "Background: Deep neck infections (DNIs) can compromise the airway and are associated with high morbidity and mortality rates. Diabetes mellitus (DM) is a metabolic disorder …",
      "year": 2024,
      "citedBy": 2
    },
    {
      "title": "Immune-related adverse events and survival among patients with metastatic NSCLC treated with immune checkpoint inhibitors",
      "link": "https://jamanetwork.com/journals/jamanetworkopen/article-abstract/2814052",
      "publicationInfo": "S Cook, V Samuel, DE Meyers, I Stukalin… - JAMA Network …, 2024 - jamanetwork.com",
      "snippet": "Importance Immune-related adverse events (irAEs) secondary to immune checkpoint inhibitor (ICI) therapy reportedly improve overall survival (OS) in patients with non–small cell lung …",
      "year": 2024,
      "citedBy": 28
    }
  ],
  "credits": 1
}
Custom Search APIの結果はこちら
{
  "kind": "customsearch#search",
  "url": {
    "type": "application/json",
    "template": "https://www.googleapis.com/customsearch/v1?q={searchTerms}&num={count?}&start={startIndex?}&lr={language?}&safe={safe?}&cx={cx?}&sort={sort?}&filter={filter?}&gl={gl?}&cr={cr?}&googlehost={googleHost?}&c2coff={disableCnTwTranslation?}&hq={hq?}&hl={hl?}&siteSearch={siteSearch?}&siteSearchFilter={siteSearchFilter?}&exactTerms={exactTerms?}&excludeTerms={excludeTerms?}&linkSite={linkSite?}&orTerms={orTerms?}&dateRestrict={dateRestrict?}&lowRange={lowRange?}&highRange={highRange?}&searchType={searchType}&fileType={fileType?}&rights={rights?}&imgSize={imgSize?}&imgType={imgType?}&imgColorType={imgColorType?}&imgDominantColor={imgDominantColor?}&alt=json"
  },
  "queries": {
    "request": [
      {
        "title": "Google Custom Search - 2024/12/14の論文",
        "totalResults": "33600000",
        "searchTerms": "2024/12/14の論文",
        "count": 10,
        "startIndex": 1,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "10591e335eeaf4a01"
      }
    ],
    "nextPage": [
      {
        "title": "Google Custom Search - 2024/12/14の論文",
        "totalResults": "33600000",
        "searchTerms": "2024/12/14の論文",
        "count": 10,
        "startIndex": 11,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "10591e335eeaf4a01"
      }
    ]
  },
  "context": {
    "title": "test"
  },
  "searchInformation": {
    "searchTime": 0.531675,
    "formattedSearchTime": "0.53",
    "totalResults": "33600000",
    "formattedTotalResults": "33,600,000"
  },
  "items": [
    {
      "kind": "customsearch#result",
      "title": "デジタルハリウッド大学研究紀要『DHU JOURNAL Vol.11 2024 ...",
      "htmlTitle": "デジタルハリウッド大学研究紀要『DHU JOURNAL Vol.11 <b>2024</b> ...",
      "link": "https://prtimes.jp/main/html/rd/p/000002458.000000496.html",
      "displayLink": "prtimes.jp",
      "snippet": "Nov 14, 2024 ... 11 2024』発行、12月14日より電子版配布開始|『研究紀要論文発表会』を同日開催. 発表会日時:2024年12月14日(土)14:00~16:30 会場:デジタルハリウッド大学 ...",
      "htmlSnippet": "Nov 14, 2024 <b>...</b> 11 2024』発行、12月14日より電子版配布開始|『研究紀要<b>論文</b>発表会』を同日開催. 発表会日時:<b>2024年12月14日(土)14:00</b>~<b>16:30</b> 会場:デジタルハリウッド大学 ...",
      "formattedUrl": "https://prtimes.jp/main/html/rd/p/000002458.000000496.html",
      "htmlFormattedUrl": "https://prtimes.jp/main/html/rd/p/000002458.000000496.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ5hAHdeTX4p1XcPiiTVdLuVg8Qrpx3lf9_jaf3QjSzDH1I4eszDHdqVz8&s",
            "width": "310",
            "height": "163"
          }
        ],
        "metatags": [
          {
            "msapplication-tilecolor": "#27476E",
            "og:image": "https://prcdn.freetls.fastly.net/release_image/496/2458/496-2458-d58d6c346fb4e9c5aa3ce88b6393e047-642x337.png?format=jpeg&auto=webp&fit=bounds&width=2400&height=1260",
            "twitter:card": "summary_large_image",
            "og:type": "article",
            "msapplication-square70x70logo": "/common/v4.1/images/html/favicon/mstile-70x70.png",
            "og:site_name": "プレスリリース・ニュースリリース配信シェアNo.1|PR TIMES",
            "og:title": "デジタルハリウッド大学研究紀要『DHU JOURNAL Vol.11 2024』発行、12月14日より電子版配布開始|『研究紀要論文発表会』を同日開催",
            "msapplication-tileimage": "/common/v4.1/images/html/favicon/mstile-144x144.png",
            "twitter:creator": "@PRTIMES_JP",
            "msapplication-square150x150logo": "/common/v4.1/images/html/favicon/mstile-150x150.png",
            "og:description": "デジタルハリウッド株式会社のプレスリリース(2024年11月14日 13時00分)デジタルハリウッド大学研究紀要『DHU JOURNAL Vol.11 2024』発行、12月14日より電子版配布開始|『研究紀要論文発表会』を同日開催",
            "fb:app_id": "1495958567142613",
            "twitter:site": "@PRTIMES_JP",
            "viewport": "width=device-width",
            "msapplication-square310x310logo": "/common/v4.1/images/html/favicon/mstile-310x310.png",
            "og:url": "https://prtimes.jp/main/html/rd/p/000002458.000000496.html",
            "next-head": "1"
          }
        ],
        "cse_image": [
          {
            "src": "https://prcdn.freetls.fastly.net/release_image/496/2458/496-2458-d58d6c346fb4e9c5aa3ce88b6393e047-642x337.png?format=jpeg&auto=webp&fit=bounds&width=2400&height=1260"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "公共選択学会第28回大会",
      "htmlTitle": "公共選択学会第28回大会",
      "link": "https://tiida.doshisha.ac.jp/publicchoice2024.html",
      "displayLink": "tiida.doshisha.ac.jp",
      "snippet": "ポスターセッション申し込み期間を延長致しました。 2024/11/22: 論文ダウンロードを開始致しました。 NEW. 大会概要. □日時. 2024年12月14日(土)10:30~18:15; 2024年12月 ...",
      "htmlSnippet": "ポスターセッション申し込み期間を延長致しました。 2024/11/22: <b>論文</b>ダウンロードを開始致しました。 NEW. 大会概要. □日時. <b>2024年12月14日(土)10:30</b>~<b>18:15</b>; 2024年12月 ...",
      "formattedUrl": "https://tiida.doshisha.ac.jp/publicchoice2024.html",
      "htmlFormattedUrl": "https://tiida.doshisha.ac.jp/publicchoice2024.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCEedC0axnpxEQgrDpnfXN3KWFX8zJn7FnQKL_2zWndM6XE7dh39jgiqOs&s",
            "width": "385",
            "height": "131"
          }
        ],
        "metatags": [
          {
            "copyright": "Template Party",
            "viewport": "width=device-width, initial-scale=1.0"
          }
        ],
        "cse_image": [
          {
            "src": "https://tiida.doshisha.ac.jp/images/weblogo.png"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "A Longitudinal Study of CogEvo's Prediction of Cognitive Decline in ...",
      "htmlTitle": "A Longitudinal Study of CogEvo's Prediction of Cognitive Decline in ...",
      "link": "https://www.mdpi.com/2227-9032/12/14/1379",
      "displayLink": "www.mdpi.com",
      "snippet": "Author to whom correspondence should be addressed. Healthcare 2024, 12(14), 1379; https://doi.org/10.3390/healthcare12141379. Submission received: ...",
      "htmlSnippet": "Author to whom correspondence should be addressed. Healthcare <b>2024</b>, <b>12</b>(<b>14</b>), 1379; https://doi.org/10.3390/healthcare12141379. Submission received: ...",
      "formattedUrl": "https://www.mdpi.com/2227-9032/12/14/1379",
      "htmlFormattedUrl": "https://www.mdpi.com/2227-9032/12/14/1379",
      "pagemap": {
        "metatags": [
          {
            "dc.publisher": "Multidisciplinary Digital Publishing Institute",
            "prism.startingpage": "1379",
            "citation_publication_date": "2024/1",
            "theme-color": "#ffffff",
            "citation_title": "A Longitudinal Study of CogEvo’s Prediction of Cognitive Decline in Older Adults",
            "citation_publisher": "Multidisciplinary Digital Publishing Institute",
            "citation_journal_title": "Healthcare",
            "dc.rights": "http://creativecommons.org/licenses/by/3.0/",
            "dc.format": "application/pdf",
            "sso-service": "mdpi",
            "prism.publicationdate": "2024-07-10",
            "msapplication-tileimage": "https://pub.mdpi-res.com/img/journals/healthcare-logo-sq.png?8600e93ff98dbf14",
            "title": "A Longitudinal Study of CogEvo’s Prediction of Cognitive Decline in Older Adults",
            "prism.issn": "2227-9032",
            "citation_online_date": "2024/07/10",
            "prism.number": "14",
            "citation_issn": "2227-9032",
            "dc.type": "Article",
            "dc.source": "Healthcare 2024, Vol. 12, Page 1379",
            "dc.creator": "Sadanobu Ichii",
            "application-name": " ",
            "prism.publicationname": "Healthcare",
            "dc.description": "The predictive abilities of computer-based screening devices for early cognitive decline (CD) in older adults have rarely been longitudinally examined. Therefore, this study examined the ability of CogEvo, a short-duration, computer-based cognitive screening device requiring little professional involvement, to predict CD among community-dwelling older adults. We determined whether 119 individuals aged ≥ 65 years living in Japanese rural communities who scored ≥ 24 on the Mini-Mental State Examination (MMSE) at baseline developed CD by annually administering the MMSE to them. CD was defined as an MMSE score of ≤23. At baseline, the overall CogEvo judgment grade, with lower grades indicating better cognitive function, was calculated from the results of various cognitive tasks. Over 2 years, 10 participants developed CD. Participants with grades of 4 had a higher percentage of CD cases than those with grades of ≤3 (p < 0.01). This relationship remained significant after controlling for possible confounde",
            "citation_author": "Ichii, Sadanobu",
            "dc.date": "2024-07-10",
            "citation_issue": "14",
            "prism.volume": "12",
            "citation_firstpage": "1379",
            "viewport": "width=device-width, initial-scale=1.0",
            "citation_doi": "10.3390/healthcare12141379",
            "dc.title": "A Longitudinal Study of CogEvo’s Prediction of Cognitive Decline in Older Adults",
            "dc.identifier": "10.3390/healthcare12141379",
            "dc.subject": "computer-based screening device",
            "prism.section": "Article",
            "citation_volume": "12",
            "dc.language": "en"
          }
        ],
        "scholarlyarticle": [
          {
            "name": "A Longitudinal Study of CogEvo’s Prediction of Cognitive Decline in Older Adults",
            "publisher": "Multidisciplinary Digital Publishing Institute",
            "url": "https://www.mdpi.com/2227-9032/12/14/1379"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "The Lancet, 14 December 2024, Volume 404, Issue 10470, Pages ...",
      "htmlTitle": "The Lancet, <b>14 December 2024</b>, Volume 404, Issue 10470, Pages ...",
      "link": "https://www.thelancet.com/journals/lancet/issue/current",
      "displayLink": "www.thelancet.com",
      "snippet": "Dec 14, 2024. Volume 404Number 10470p2395-2486, · Editorial · Comment · World Report · Perspectives · Obituary · Correspondence · Department of · Articles.",
      "htmlSnippet": "<b>Dec 14, 2024</b>. Volume 404Number 10470p2395-2486, · Editorial · Comment · World Report · Perspectives · Obituary · Correspondence · Department of · Articles.",
      "formattedUrl": "https://www.thelancet.com/journals/lancet/issue/current",
      "htmlFormattedUrl": "https://www.thelancet.com/journals/lancet/issue/current",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQxH_C4b7v0-AkWBPZFxfuMPLpwDLQXhZMH9CkCpx-15CQrSpTjwyY1GLc&s",
            "width": "193",
            "height": "261"
          }
        ],
        "metatags": [
          {
            "twitter:card": "summary",
            "viewport": "width=device-width,initial-scale=1,maximum-scale=1, user-scalable=1",
            "pbcontext": ";journal:journal:lancet;ctype:string:Journal Content;subPage:string:Current Issue;pageGroup:string:Publication Page;issue:issue:pii\\:S0140673624X00513;page:string:Table of Contents;requestedJournal:journal:lancet;product:product:elsevier\\:product\\:lancet;wgroup:string:Default Website Group;website:website:lancet-site",
            "name": "The Lancet, 14 December 2024, Volume 404, Issue 10470, Pages 2395-2486, e8"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.thelancet.com/cms/asset/atypon:cms:attachment:img:d173e6:rev:1733979320821-8405:pii:S0140673624X00513/cover.tif.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "J-STAGE トップ",
      "htmlTitle": "J-STAGE トップ",
      "link": "https://www.jstage.jst.go.jp/browse/-char/ja/",
      "displayLink": "www.jstage.jst.go.jp",
      "snippet": "2024/12/14 2024 巻 271 号 · 共生社会システム研究. 2024/12/14 17 巻 1 号 · 近代 ... 公開日: 2024/10/31 | 論文ID pjab.100.035. Ryota AOKI, Yayoi INUI, Yoji ...",
      "htmlSnippet": "<b>2024/12/14</b> 2024 巻 271 号 · 共生社会システム研究. <b>2024/12/14</b> 17 巻 1 号 · 近代 ... 公開日: 2024/10/31 | <b>論文</b>ID pjab.100.035. Ryota AOKI, Yayoi INUI, Yoji ...",
      "formattedUrl": "https://www.jstage.jst.go.jp/browse/-char/ja/",
      "htmlFormattedUrl": "https://www.jstage.jst.go.jp/browse/-char/ja/",
      "pagemap": {
        "metatags": [
          {
            "og:image": "https://www.jstage.jst.go.jp/html/images/common/SNS/J-STAGE_logo_sns.png",
            "twitter:card": "summary",
            "twitter:site": "@jstage_ej",
            "og:site_name": "J-STAGE",
            "viewport": "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no",
            "og:title": "J-STAGE",
            "og:url": "https://www.jstage.jst.go.jp/browse/-char/ja/",
            "og:description": "学術論文の全文へアクセス-J-STAGEは、日本の学術ジャーナルを発信するオンラインプラットフォームです。",
            "format-detection": "telephone=no"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.jstage.jst.go.jp/html/images/common/SNS/J-STAGE_logo_sns.png"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "2024年度大学院工学研究科・博士論文発表会のご案内(12/14開催 ...",
      "htmlTitle": "<b>2024</b>年度大学院工学研究科・博士<b>論文</b>発表会のご案内(<b>12</b>/<b>14</b>開催 ...",
      "link": "https://www.kogakuin.ac.jp/news/2024/112805.html",
      "displayLink": "www.kogakuin.ac.jp",
      "snippet": "Nov 28, 2024 ... 日時, 2024年12月14日(土) 14:00~. 会場, 新宿キャンパス B-0230 Izumi Pavilion. 論文内容, 木造軸組住宅における横架材継手の設計法に関する研究.",
      "htmlSnippet": "Nov 28, 2024 <b>...</b> 日時, <b>2024年12月14日(土) 14:00</b>~. 会場, 新宿キャンパス B-0230 Izumi Pavilion. <b>論文</b>内容, 木造軸組住宅における横架材継手の設計法に関する研究.",
      "formattedUrl": "https://www.kogakuin.ac.jp/news/2024/112805.html",
      "htmlFormattedUrl": "https://www.kogakuin.ac.jp/news/2024/112805.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ_YVg1DItEXFJVMNEzP_vKGbAc5Lq39M5-bUMibxMqWFNBoaS5NX6MSWXO&s",
            "width": "297",
            "height": "170"
          }
        ],
        "metatags": [
          {
            "date": "2024-11-28",
            "og:image": "https://www.kogakuin.ac.jp/news/2024/r8c3sp000000635m-img/r8c3sp000000638q.jpg",
            "og:type": "article",
            "og:site_name": "工学院大学",
            "viewport": "width=device-width, viewport-fit=cover",
            "og:title": "2024年度大学院工学研究科・博士論文発表会のご案内(12/14開催) 建築学専攻 | 2024年度のお知らせ | 工学院大学",
            "og:locale": "ja_JP",
            "og:url": "https://www.kogakuin.ac.jp/news/2024/112805.html",
            "og:description": "2023年度工学院大学工学研究科・博士論文発表会を開催します。",
            "format-detection": "telephone=no, email=no, address=no"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.kogakuin.ac.jp/news/2024/r8c3sp000000635m-img/r8c3sp000000638q.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "2024年12月14日 | AASJホームページ",
      "htmlTitle": "<b>2024年12月14日</b> | AASJホームページ",
      "link": "https://aasj.jp/date/2024/12/14",
      "displayLink": "aasj.jp",
      "snippet": "8 hours ago ... 今日紹介するローザンヌ工科大学からの論文は、リハビリテーションで回復が可能な不完全脊損患者さんの回復を、視床下部への電気刺激が促進できることを ...",
      "htmlSnippet": "8 hours ago <b>...</b> 今日紹介するローザンヌ工科大学からの<b>論文</b>は、リハビリテーションで回復が可能な不完全脊損患者さんの回復を、視床下部への電気刺激が促進できることを ...",
      "formattedUrl": "https://aasj.jp/date/2024/12/14",
      "htmlFormattedUrl": "https://aasj.jp/date/2024/12/14",
      "pagemap": {
        "metatags": [
          {
            "copyright": "NPO法人 オール・アバウト・サイエンス・ジャパン",
            "viewport": "width=device-width, initial-scale=1",
            "author": "NPO法人 オール・アバウト・サイエンス・ジャパン",
            "msapplication-tileimage": "https://aasj.jp/wp-content/uploads/cropped-favicon-270x270.png"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "第20回 土木学会 景観・デザイン研究発表会",
      "htmlTitle": "第20回 土木学会 景観・デザイン研究発表会",
      "link": "https://jscedesign.jp/conference/2024/",
      "displayLink": "jscedesign.jp",
      "snippet": "第20回 景観・デザイン研究発表会. Conference for Architecture of Infrastructure and Environment. 日程 2024年12月13日[金]:シンポジウム開催 2024年12月14日[土]-15日 ...",
      "htmlSnippet": "第20回 景観・デザイン研究発表会. Conference for Architecture of Infrastructure and Environment. 日程 2024年12月13日[金]:シンポジウム開催 <b>2024年12月14日</b>[土]-15日 ...",
      "formattedUrl": "https://jscedesign.jp/conference/2024/",
      "htmlFormattedUrl": "https://jscedesign.jp/conference/2024/",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTj9iee4suwdtfuPkpO4z7eMaL8Eeg6SeZYzxpMwGr_6jjgjHuQrajocgo&s",
            "width": "259",
            "height": "194"
          }
        ],
        "metatags": [
          {
            "og:image": "https://cdn.peraichi.com/userData/5e7c355e-3008-42f3-b39d-4d810a0000c5/img/649823dda9b7b/original.jpg",
            "og:type": "website",
            "twitter:card": "summary",
            "og:site_name": "第19回 土木学会 景観・デザイン研究発表会",
            "viewport": "width=device-width, initial-scale=1",
            "og:title": "第19回 土木学会 景観・デザイン研究発表会",
            "og:url": "http://jscedesign.jp/conference/2024",
            "og:description": "土木学会 景観・デザイン委員会では、従来の学術研究のみならず、デザイン作品や計画・マネジメント、評論など、景観・デザインについて幅広く議論する場として、「景観・デザイン研究発表会」を実施しております。本年は下記の要領で開催しますのでご案内致します。"
          }
        ],
        "cse_image": [
          {
            "src": "https://cdn.peraichi.com/userData/5e7c355e-3008-42f3-b39d-4d810a0000c5/img/649823dda9b7b/original.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "1論文試験について (1)日 時 令和6年12月14日(土) 8時15分 集合 ...",
      "htmlTitle": "1<b>論文</b>試験について (1)日 時 <b>令和6年12月14日(土) 8時15分</b> 集合 ...",
      "link": "https://www.pref.shiga.lg.jp/file/attachment/5505147.pdf",
      "displayLink": "www.pref.shiga.lg.jp",
      "snippet": "1論文試験について. (1)日 時. 令和6年12月14日(土) 8時15分 集合. 集合時刻に遅れた場合は、試験を受けることができなくなることがあります。 (2)集合場所.",
      "htmlSnippet": "1<b>論文</b>試験について. (1)日 時. <b>令和6年12月14日(土) 8時15分</b> 集合. 集合時刻に遅れた場合は、試験を受けることができなくなることがあります。 (2)集合場所.",
      "formattedUrl": "https://www.pref.shiga.lg.jp/file/attachment/5505147.pdf",
      "htmlFormattedUrl": "https://www.pref.shiga.lg.jp/file/attachment/5505147.pdf",
      "pagemap": {
        "metatags": [
          {
            "moddate": "D:20241204083731+09'00'",
            "creationdate": "D:20241204083730+09'00'",
            "author": "Administrator",
            "producer": "JUST PDF 3",
            "title": "2次試験集合時間"
          }
        ]
      },
      "mime": "application/pdf",
      "fileFormat": "PDF/Adobe Acrobat"
    },
    {
      "kind": "customsearch#result",
      "title": "ACL 2024: The 62nd Annual Meeting of the Association for ...",
      "htmlTitle": "ACL <b>2024</b>: The 62nd Annual Meeting of the Association for ...",
      "link": "https://2024.aclweb.org/",
      "displayLink": "2024.aclweb.org",
      "snippet": "Important Dates. Tutorials, Sunday, August 11, 2024. Main Conference, Monday – Wednesday, August 12 – 14, 2024.",
      "htmlSnippet": "Important Dates. Tutorials, Sunday, August 11, <b>2024</b>. Main Conference, Monday – Wednesday, August <b>12</b> – <b>14</b>, <b>2024</b>.",
      "formattedUrl": "https://2024.aclweb.org/",
      "htmlFormattedUrl": "https://2024.aclweb.org/",
      "pagemap": {
        "metatags": [
          {
            "msapplication-tilecolor": "#2b5797",
            "og:image": "https://github.com/acl-org/acl-2024/assets/images/bangkok/bangkok-banner.jpeg",
            "og:type": "website",
            "twitter:title": "The 62nd Annual Meeting of the Association for Computational Linguistics",
            "twitter:card": "summary_large_image",
            "theme-color": "#ffffff",
            "og:site_name": "ACL 2024",
            "twitter:url": "https://github.com/acl-org/acl-2024/",
            "og:title": "The 62nd Annual Meeting of the Association for Computational Linguistics",
            "msapplication-tileimage": "/assets/images/mstile-144x144.png",
            "og:description": "Bangkok, ThailandAugust 11–16, 2024",
            "twitter:image": "https://github.com/acl-org/acl-2024/assets/images/bangkok/bangkok-banner.jpeg",
            "twitter:site": "@aclmeeting",
            "viewport": "width=device-width, initial-scale=1.0",
            "twitter:description": "Bangkok, ThailandAugust 11–16, 2024",
            "og:locale": "en_US",
            "og:url": "https://github.com/acl-org/acl-2024/"
          }
        ],
        "creativework": [
          {
            "description": "Bangkok, ThailandAugust 11–16, 2024",
            "text": "Welcome! The 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024) will take place in Bangkok, Thailand from August 11th to 16th, 2024. News Registration is officially...",
            "headline": "The 62nd Annual Meeting of the Association for Computational Linguistics"
          }
        ],
        "cse_image": [
          {
            "src": "https://github.com/acl-org/acl-2024/assets/images/bangkok/bangkok-banner.jpeg"
          }
        ]
      }
    }
  ]
}
=== 1 ===
  タイトル: デジタルハリウッド大学研究紀要『DHU JOURNAL Vol.11 2024 ...
  リンク: https://prtimes.jp/main/html/rd/p/000002458.000000496.html
  スニペット: Nov 14, 2024 ... 11 2024』発行、12月14日より電子版配布開始|『研究紀要論文発表会』を同日開催. 発表会日時:2024年12月14日(土)14:00~16:30 会場:デジタルハリウッド大学 ...
---
=== 2 ===
  タイトル: 公共選択学会第28回大会
  リンク: https://tiida.doshisha.ac.jp/publicchoice2024.html
  スニペット: ポスターセッション申し込み期間を延長致しました。 2024/11/22: 論文ダウンロードを開始致しました。 NEW. 大会概要. □日時. 2024年12月14日(土)10:30~18:15; 2024年12月 ...
---
=== 3 ===
  タイトル: A Longitudinal Study of CogEvo's Prediction of Cognitive Decline in ...
  リンク: https://www.mdpi.com/2227-9032/12/14/1379
  スニペット: Author to whom correspondence should be addressed. Healthcare 2024, 12(14), 1379; https://doi.org/10.3390/healthcare12141379. Submission received: ...
---
=== 4 ===
  タイトル: The Lancet, 14 December 2024, Volume 404, Issue 10470, Pages ...
  リンク: https://www.thelancet.com/journals/lancet/issue/current
  スニペット: Dec 14, 2024. Volume 404Number 10470p2395-2486, · Editorial · Comment · World Report · Perspectives · Obituary · Correspondence · Department of · Articles.
---
=== 5 ===
  タイトル: J-STAGE トップ
  リンク: https://www.jstage.jst.go.jp/browse/-char/ja/
  スニペット: 2024/12/14 2024 巻 271 号 · 共生社会システム研究. 2024/12/14 17 巻 1 号 · 近代 ... 公開日: 2024/10/31 | 論文ID pjab.100.035. Ryota AOKI, Yayoi INUI, Yoji ...
---
=== 6 ===
  タイトル: 2024年度大学院工学研究科・博士論文発表会のご案内(12/14開催 ...
  リンク: https://www.kogakuin.ac.jp/news/2024/112805.html
  スニペット: Nov 28, 2024 ... 日時, 2024年12月14日(土) 14:00~. 会場, 新宿キャンパス B-0230 Izumi Pavilion. 論文内容, 木造軸組住宅における横架材継手の設計法に関する研究.
---
=== 7 ===
  タイトル: 2024年12月14日 | AASJホームページ
  リンク: https://aasj.jp/date/2024/12/14
  スニペット: 8 hours ago ... 今日紹介するローザンヌ工科大学からの論文は、リハビリテーションで回復が可能な不完全脊損患者さんの回復を、視床下部への電気刺激が促進できることを ...
---
=== 8 ===
  タイトル: 第20回 土木学会 景観・デザイン研究発表会
  リンク: https://jscedesign.jp/conference/2024/
  スニペット: 第20回 景観・デザイン研究発表会. Conference for Architecture of Infrastructure and Environment. 日程 2024年12月13日[金]:シンポジウム開催 2024年12月14日[土]-15日 ...
---
=== 9 ===
  タイトル: 1論文試験について (1)日 時 令和6年12月14日(土) 8時15分 集合 ...
  リンク: https://www.pref.shiga.lg.jp/file/attachment/5505147.pdf
  スニペット: 1論文試験について. (1)日 時. 令和6年12月14日(土) 8時15分 集合. 集合時刻に遅れた場合は、試験を受けることができなくなることがあります。 (2)集合場所.
---
=== 10 ===
  タイトル: ACL 2024: The 62nd Annual Meeting of the Association for ...
  リンク: https://2024.aclweb.org/
  スニペット: Important Dates. Tutorials, Sunday, August 11, 2024. Main Conference, Monday – Wednesday, August 12 – 14, 2024.
---

Serperはscalarの項目があり、適切に論文を出力してきてくれます。一方でCustom Search APIは学会発表や研究発表会などの内容も出力しており、こちらもユーザーがほしいものを検索できていないように感じます。

新宿区下落合のホテルの料金比較、口コミ調査

最後は特定地域のホテル料金と口コミ調査です。こちらはクエリに「新宿区下落合のホテルの料金比較、口コミ」と入力してどちらも検索をしています。

Serperの結果
{
  "searchParameters": {
    "q": "新宿区下落合のホテルの料金比較、口コミ",
    "gl": "jp",
    "hl": "ja",
    "type": "search",
    "engine": "google"
  },
  "organic": [
    {
      "title": "下落合駅周辺のおすすめホテル・最安値宿泊プラン一覧 - トラベルコ",
      "link": "https://www.tour.ne.jp/j_hotel/list/?landmark=%E4%B8%8B%E8%90%BD%E5%90%88",
      "snippet": "全303プランを見る · 新宿ワシントンホテル 本館. ホテルランク; 価格帯; クチコミ評価3.7. ホテルランク4. Expedia. 4.0. 価格帯:5,000~8,000円クラス. 施設の標準的な ...",
      "position": 1
    },
    {
      "title": "下落合駅×コスパが人気の宿 おすすめホテル・旅館 - 宿泊予約は[一休 ...",
      "link": "https://www.ikyu.com/station/ms2200703/t907/",
      "snippet": "下落合駅×コスパが人気の宿 おすすめホテル・旅館 ; ダイワロイネットホテル西新宿 PREMIER. 下落合駅から2.4 km. 東京メトロ丸ノ内線西新宿駅から徒歩5分. 4.55 (106件).",
      "position": 2
    },
    {
      "title": "下落合駅に近いおすすめホテル・旅館 - Yahoo!トラベル",
      "link": "https://travel.yahoo.co.jp/station/ms2200703/",
      "snippet": "下落合駅に近いおすすめホテル・旅館 · ホテルローズガーデン新宿 · ダイワロイネットホテル西新宿 PREMIER · ホテル椿山荘東京 · 西鉄イン新宿 · 新宿プリンスホテル · ONSEN ...",
      "position": 3
    },
    {
      "title": "下落合駅 周辺のホテル・旅館 - 楽天トラベル",
      "link": "https://travel.rakuten.co.jp/yado/traffic/tokyo/00000000000000203607.html",
      "snippet": "下落合駅 周辺のホテル・旅館 · MEET · FLレジデンス高田馬場/民泊【Vacation STAY提供】 · ホテルリブマックス高田馬場駅前 · Local Stay NAKAI · Laffitte · 新宿 Sky Capsule.",
      "position": 4
    },
    {
      "title": "下落合駅周辺ホテル・宿泊 - トリップアドバイザー",
      "link": "https://www.tripadvisor.jp/HotelsNear-g1066460-d4489152-Shimoochiai_Station-Toshima_Tokyo_Tokyo_Prefecture_Kanto.html",
      "snippet": "5. プレミアホテル CABIN 新宿 ... 「立地的にもとても便利なホテル。 部屋も綺麗でとても快適に過ごせます。 今回初めて朝食付きプランで宿泊しましたが、どの料理もとても ...",
      "attributes": {
        "含まれない": "比較、 | 必須にする:比較、"
      },
      "position": 5
    },
    {
      "title": "下落合駅に近いおすすめビジネスホテル - 宿泊予約は[一休.com]",
      "link": "https://www.ikyu.com/biz/station/ms2200703/?accommodation_types=BUSINESS",
      "snippet": "下落合駅に近いおすすめビジネスホテル · ホテルローズガーデン新宿 · ダイワロイネットホテル西新宿 PREMIER · 相鉄グランドフレッサ 高田馬場 · アパホテル〈新宿 歌舞伎町 ...",
      "position": 6
    },
    {
      "title": "下落合駅に近いホテル・旅館 - Yahoo!トラベル",
      "link": "https://travel.yahoo.co.jp/station/ms2200703/si99/",
      "snippet": "新宿区. 駅徒歩5分以内. 10% (1,150円分) 割引で. 11,536円~ 2名 税込 10,386円 ... 新宿に位置する、滞在型ホテル。交通アクセスも抜群で、JR新宿駅や都庁、高層 ...",
      "position": 7
    },
    {
      "title": "下落合駅 周辺のホテル・旅館 - 楽天市場",
      "link": "https://hotel.travel.rakuten.co.jp/hotellist/list/00000000000000203607.html?f_page=1&f_sort=1&f_page_type=list&f_target_key=station",
      "snippet": "下落合駅 周辺のホテル・旅館 ; リッチモンドホテル東京目白. [最安料金]: 5,000円~(消費税込5,500円 ~). お客さまの声: 4.4 ; ホテルメトロポリタン. [最安料金]: 13,455円~ ...",
      "position": 8
    },
    {
      "title": "東京 下落合駅周辺のおすすめホテル・人気宿を格安予約 | Trip.com",
      "link": "https://jp.trip.com/hotels/tokyo-shimo-ochiai-railway-station/hotels-c228r10639889/",
      "snippet": "小田急ホテルセンチュリーサザンタワー. 新宿, 東京 · 713件の口コミ ; 芝パークホテル. 東京タワー周辺, 東京 · 114件の口コミ ; JR 九州ホテル ブラッサム新宿. 新宿, 東京.",
      "attributes": {
        "含まれない": "比較、 | 必須にする:比較、"
      },
      "position": 9
    },
    {
      "title": "The Breathingホテル東京【 2024年最新の料金比較・口コミ・宿泊 ...",
      "link": "https://www.tripadvisor.jp/Hotel_Review-g14131403-d21229663-Reviews-The_Breathing_Hotel_Tokyo-Takadanobaba_Shinjuku_Tokyo_Tokyo_Prefecture_Kanto.html",
      "snippet": "The Breathingホテル東京に関する旅行者からの口コミ、写真、地図をトリップアドバイザーでチェック!旅行会社の価格を一括比較してお得に予約をすることができます。",
      "position": 10
    }
  ],
  "relatedSearches": [
    {
      "query": "下落合 ホテル 竹峰"
    },
    {
      "query": "高田馬場 ホテル"
    }
  ],
  "credits": 1
Custom Search APIの結果
{
  "kind": "customsearch#search",
  "url": {
    "type": "application/json",
    "template": "https://www.googleapis.com/customsearch/v1?q={searchTerms}&num={count?}&start={startIndex?}&lr={language?}&safe={safe?}&cx={cx?}&sort={sort?}&filter={filter?}&gl={gl?}&cr={cr?}&googlehost={googleHost?}&c2coff={disableCnTwTranslation?}&hq={hq?}&hl={hl?}&siteSearch={siteSearch?}&siteSearchFilter={siteSearchFilter?}&exactTerms={exactTerms?}&excludeTerms={excludeTerms?}&linkSite={linkSite?}&orTerms={orTerms?}&dateRestrict={dateRestrict?}&lowRange={lowRange?}&highRange={highRange?}&searchType={searchType}&fileType={fileType?}&rights={rights?}&imgSize={imgSize?}&imgType={imgType?}&imgColorType={imgColorType?}&imgDominantColor={imgDominantColor?}&alt=json"
  },
  "queries": {
    "request": [
      {
        "title": "Google Custom Search - 新宿区下落合のホテルの料金比較、口コミ調査",
        "totalResults": "26200",
        "searchTerms": "新宿区下落合のホテルの料金比較、口コミ調査",
        "count": 10,
        "startIndex": 1,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "10591e335eeaf4a01"
      }
    ],
    "nextPage": [
      {
        "title": "Google Custom Search - 新宿区下落合のホテルの料金比較、口コミ調査",
        "totalResults": "26200",
        "searchTerms": "新宿区下落合のホテルの料金比較、口コミ調査",
        "count": 10,
        "startIndex": 11,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "10591e335eeaf4a01"
      }
    ]
  },
  "context": {
    "title": "test"
  },
  "searchInformation": {
    "searchTime": 0.634552,
    "formattedSearchTime": "0.63",
    "totalResults": "26200",
    "formattedTotalResults": "26,200"
  },
  "items": [
    {
      "kind": "customsearch#result",
      "title": "価格.com - 「買ってよかった」をすべてのひとに。",
      "htmlTitle": "価格.com - 「買ってよかった」をすべてのひとに。",
      "link": "https://kakaku.com/",
      "displayLink": "kakaku.com",
      "snippet": "「買ってよかった!」と思えるお買い物は価格.comから! パソコンや家電から、ファッション、食品に至るまで、あらゆる製品・サービスを、販売価格やクチコミ情報、 ...",
      "htmlSnippet": "「買ってよかった!」と思えるお買い物は価格.comから! パソコンや家電から、ファッション、食品に至るまで、あらゆる製品・サービスを、販売価格や<b>クチコミ</b>情報、 ...",
      "formattedUrl": "https://kakaku.com/",
      "htmlFormattedUrl": "https://kakaku.com/",
      "pagemap": {
        "metatags": [
          {
            "viewport": "width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0",
            "google": "nositelinkssearchbox",
            "format-detection": "telephone=no"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "新宿の探偵の料金比較|浮気調査に強いAkai探偵事務所-新宿店",
      "htmlTitle": "<b>新宿</b>の探偵の<b>料金比較</b>|浮気<b>調査</b>に強いAkai探偵事務所-<b>新宿</b>店",
      "link": "https://www.akai-tantei.com/share/tokyo/shinjuku/",
      "displayLink": "www.akai-tantei.com",
      "snippet": "人が密集しているので、尾行の難易度は、かなり高めですし、ホテル ... 新宿区の浮気調査の料金比較表. 新宿の浮気調査100%成功報酬の比較表. Akai探偵事務所、新宿の口コミ.",
      "htmlSnippet": "人が密集しているので、尾行の難易度は、かなり高めですし、<b>ホテル</b> ... <b>新宿区</b>の浮気<b>調査</b>の<b>料金比較</b>表. <b>新宿</b>の浮気<b>調査</b>100%成功報酬の<b>比較</b>表. Akai探偵事務所、<b>新宿</b>の<b>口コミ</b>.",
      "formattedUrl": "https://www.akai-tantei.com/share/tokyo/shinjuku/",
      "htmlFormattedUrl": "https://www.akai-tantei.com/share/tokyo/shinjuku/",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR18M-a55NpCGbsVq3TEZu-fRuYotgZRomX8nQz040h2CzXgaIB8ltWnSw&s",
            "width": "156",
            "height": "150"
          }
        ],
        "metatags": [
          {
            "viewport": "width=device-width",
            "author": "akai探偵事務所"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.akai-tantei.com/i/share/image/main_menu_04.jpg"
          }
        ],
        "listitem": [
          {
            "item": "Akai探偵事務所",
            "name": "Akai探偵事務所",
            "position": "1"
          },
          {
            "item": "会社概要",
            "name": "会社概要",
            "position": "2"
          },
          {
            "item": "東京都エリア",
            "name": "東京都エリア",
            "position": "3"
          },
          {
            "item": "新宿区",
            "name": "新宿区",
            "position": "4"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "東新宿のおすすめ英会話教室4選!マンツーマンありのスクールを比較",
      "htmlTitle": "東<b>新宿</b>のおすすめ英会話教室4選!マンツーマンありのスクールを<b>比較</b>",
      "link": "https://kirinjishimarathon.jp/higashishinjuku/",
      "displayLink": "kirinjishimarathon.jp",
      "snippet": "Dec 12, 2022 ... 東新宿駅近郊でマンツーマンありの英会話スクールを調査・比較!料金プラン、駅からの近さ、口コミ評判などをまとめました。英会話教室選びの参考に ...",
      "htmlSnippet": "Dec 12, 2022 <b>...</b> 東<b>新宿</b>駅近郊でマンツーマンありの英会話スクールを<b>調査</b>・<b>比較</b>!<b>料金</b>プラン、駅からの近さ、<b>口コミ</b>評判などをまとめました。英会話教室選びの参考に ...",
      "formattedUrl": "https://kirinjishimarathon.jp/higashishinjuku/",
      "htmlFormattedUrl": "https://kirinjishimarathon.jp/higashishinjuku/",
      "pagemap": {
        "wpfooter": [
          {
            "name": "東京のおすすめ英会話教室",
            "about": "東京のおすすめ英会話教室",
            "url": "東京のおすすめ英会話教室"
          }
        ],
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcStVIKF7ouj-E219FlwW5ElcuFY_VZGXvE-9s7Q15KBlGzL_Xec2q5MuWw&s",
            "width": "310",
            "height": "163"
          }
        ],
        "website": [
          {
            "alternativeheadline": "マンツーマンありで大人におすすめな東京の英会話スクールを紹介!",
            "name": "東京のおすすめ英会話教室",
            "about": "東京のおすすめ英会話教室",
            "url": "東京のおすすめ英会話教室"
          }
        ],
        "thumbnail": [
          {
            "src": "https://kirinjishimarathon.jp/wp-content/uploads/2022/04/higashishinjuku.jpg"
          }
        ],
        "imageobject": [
          {
            "width": "1200",
            "url": "https://kirinjishimarathon.jp/wp-content/uploads/2022/04/higashishinjuku.jpg",
            "height": "630"
          }
        ],
        "person": [
          {
            "name": "東京のおすすめ英会話教室",
            "url": "https://kirinjishimarathon.jp"
          }
        ],
        "metatags": [
          {
            "og:image": "https://kirinjishimarathon.jp/wp-content/uploads/2022/04/higashishinjuku.jpg",
            "og:type": "article",
            "article:published_time": "2022-04-20T14:43:44+09:00",
            "article:section": "新宿区",
            "twitter:card": "summary_large_image",
            "twitter:title": "東新宿のおすすめ英会話教室4選!マンツーマンありのスクールを比較",
            "thumbnail": "https://kirinjishimarathon.jp/wp-content/uploads/2022/04/higashishinjuku.jpg",
            "og:site_name": "東京のおすすめ英会話教室",
            "twitter:domain": "kirinjishimarathon.jp",
            "twitter:url": "https://kirinjishimarathon.jp/higashishinjuku/",
            "og:title": "東新宿のおすすめ英会話教室4選!マンツーマンありのスクールを比較",
            "msapplication-tileimage": "https://kirinjishimarathon.jp/wp-content/uploads/2022/04/cropped-favicon-1-270x270.png",
            "og:description": "東新宿駅近郊でマンツーマンありの英会話スクールを調査・比較!料金プラン、駅からの近さ、口コミ評判などをまとめました。英会話教室選びの参考にどうぞ。",
            "twitter:image": "https://kirinjishimarathon.jp/wp-content/uploads/2022/04/higashishinjuku.jpg",
            "referrer": "no-referrer-when-downgrade",
            "article:modified_time": "2022-12-12T14:03:16+09:00",
            "viewport": "width=device-width, initial-scale=1.0, viewport-fit=cover",
            "twitter:description": "東新宿駅近郊でマンツーマンありの英会話スクールを調査・比較!料金プラン、駅からの近さ、口コミ評判などをまとめました。英会話教室選びの参考にどうぞ。",
            "og:locale": "ja_JP",
            "og:url": "https://kirinjishimarathon.jp/higashishinjuku/",
            "format-detection": "telephone=no"
          }
        ],
        "cse_image": [
          {
            "src": "https://kirinjishimarathon.jp/wp-content/uploads/2022/04/higashishinjuku.jpg"
          }
        ],
        "hatomfeed": [
          {}
        ],
        "blogposting": [
          {
            "datemodified": "2022-12-12T14:03:16+09:00",
            "headline": "東新宿のおすすめ英会話教室4選!マンツーマンありのスクールを比較",
            "datepublished": "2022-04-20T14:43:44+09:00",
            "mainentityofpage": "東京都新宿区にある東新宿駅は、東京メトロ副都心線・都営地下鉄大江戸線の2路線が通っており、新宿駅や新宿三丁目駅にもアクセスしやすい場..."
          }
        ],
        "wpadblock": [
          {
            "name": "スポンサーリンク"
          }
        ],
        "listitem": [
          {
            "item": "ホーム",
            "name": "ホーム",
            "position": "1"
          },
          {
            "item": "新宿区",
            "name": "新宿区",
            "position": "2"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "豊島区の探偵料金とのクーポン券|浮気調査に強いAkai探偵",
      "htmlTitle": "豊島区の探偵<b>料金</b>とのクーポン券|浮気<b>調査</b>に強いAkai探偵",
      "link": "https://www.akai-tantei.com/share/tokyo/toshima-ku/",
      "displayLink": "www.akai-tantei.com",
      "snippet": "(料金詳細と比較表は、上部Menu参照). 東京都豊島区の浮気調査の料金比較表. 東京都豊島区の浮気調査100%成功報酬の比較表. 豊島区を含むGoogleマップの口コミ. Akai探偵 ...",
      "htmlSnippet": "(<b>料金</b>詳細と<b>比較</b>表は、上部Menu参照). 東京都豊島区の浮気<b>調査</b>の<b>料金比較</b>表. 東京都豊島区の浮気<b>調査</b>100%成功報酬の<b>比較</b>表. 豊島区を含むGoogleマップの<b>口コミ</b>. Akai探偵 ...",
      "formattedUrl": "https://www.akai-tantei.com/share/tokyo/toshima-ku/",
      "htmlFormattedUrl": "https://www.akai-tantei.com/share/tokyo/toshima-ku/",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR18M-a55NpCGbsVq3TEZu-fRuYotgZRomX8nQz040h2CzXgaIB8ltWnSw&s",
            "width": "156",
            "height": "150"
          }
        ],
        "metatags": [
          {
            "viewport": "width=device-width",
            "author": "akai探偵事務所"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.akai-tantei.com/i/share/image/main_menu_04.jpg"
          }
        ],
        "listitem": [
          {
            "item": "Akai探偵事務所",
            "name": "Akai探偵事務所",
            "position": "1"
          },
          {
            "item": "会社概要",
            "name": "会社概要",
            "position": "2"
          },
          {
            "item": "東京都エリア",
            "name": "東京都エリア",
            "position": "3"
          },
          {
            "item": "豊島区",
            "name": "豊島区",
            "position": "4"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "HOTEL GROOVE SHINJUKU, A PARKROYAL HOTEL【 2024年 ...",
      "htmlTitle": "<b>HOTEL</b> GROOVE SHINJUKU, A PARKROYAL <b>HOTEL</b>【 2024年 ...",
      "link": "https://www.tripadvisor.jp/Hotel_Review-g14133667-d25267575-Reviews-HOTEL_GROOVE_SHINJUKU_A_PARKROYAL_Hotel-Kabukicho_Shinjuku_Tokyo_Tokyo_Prefecture_K.html",
      "displayLink": "www.tripadvisor.jp",
      "snippet": "... 料金比較・口コミ・宿泊予約 】- トリップアドバイザー. アジア日本関東地方東京都東京都心新宿区歌舞伎町歌舞伎町 ホテル HOTEL GROOVE SHINJUKU, A PARKROYAL HOTEL.",
      "htmlSnippet": "... <b>料金比較</b>・<b>口コミ</b>・宿泊予約 】- トリップアドバイザー. アジア日本関東地方東京都東京都心<b>新宿区</b>歌舞伎町歌舞伎町 <b>ホテル HOTEL</b> GROOVE SHINJUKU, A PARKROYAL <b>HOTEL</b>.",
      "formattedUrl": "https://www.tripadvisor.jp/Hotel_Review-g14133667-d25267575-Reviews-...",
      "htmlFormattedUrl": "https://www.tripadvisor.jp/Hotel_Review-g14133667-d25267575-Reviews-...",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRr6PZiPkDI1aLfjWaV-67Zko-j9sKLt4tcWko_BinKA0ZQxWRIQRGlFYM&s",
            "width": "275",
            "height": "183"
          }
        ],
        "metatags": [
          {
            "twitter:app:url:iphone": "tripadvisor://www.tripadvisor.jp/Hotel_Review-g14133667-d25267575-Reviews-HOTEL_GROOVE_SHINJUKU_A_PARKROYAL_Hotel-Kabukicho_Shinjuku_Tokyo_Tokyo_Prefecture_K.html?m=33762",
            "apple-itunes-app": "app-id=-1",
            "og:image": "https://media-cdn.tripadvisor.com/media/photo-s/29/f1/bb/66/view-premier-king-image.jpg",
            "theme-color": "#34e0a1",
            "og:type": "website",
            "og:image:width": "550",
            "og:site_name": "トリップアドバイザー",
            "al:ios:app_name": "TripAdvisor",
            "twitter:app:url:ipad": "tripadvisor://www.tripadvisor.jp/Hotel_Review-g14133667-d25267575-Reviews-HOTEL_GROOVE_SHINJUKU_A_PARKROYAL_Hotel-Kabukicho_Shinjuku_Tokyo_Tokyo_Prefecture_K.html?m=33762",
            "og:title": "HOTEL GROOVE SHINJUKU, A PARKROYAL HOTEL【 2024年最新の料金比較・口コミ・宿泊予約 】- トリップアドバイザー",
            "twitter:app:id:ipad": "284876795",
            "og:image:height": "367",
            "twitter:app:id:iphone": "284876795",
            "al:ios:url": "tripadvisor://www.tripadvisor.jp/Hotel_Review-g14133667-d25267575-Reviews-HOTEL_GROOVE_SHINJUKU_A_PARKROYAL_Hotel-Kabukicho_Shinjuku_Tokyo_Tokyo_Prefecture_K.html?m=33762",
            "fb:pages": "141967432533240",
            "og:description": "HOTEL GROOVE SHINJUKU, A PARKROYAL HOTELに関する旅行者からの口コミ、写真、地図をトリップアドバイザーでチェック!旅行会社の価格を一括比較してお得に予約をすることができます。HOTEL GROOVE SHINJUKU, A PARKROYAL HOTELは、歌舞伎町で1番目に人気の宿泊施設です。",
            "al:ios:app_store_id": "284876795",
            "twitter:image": "https://media-cdn.tripadvisor.com/media/photo-s/29/f1/bb/66/view-premier-king-image.jpg",
            "viewport": "width=device-width, initial-scale=1.0, viewport-fit=cover",
            "og:locale": "ja-JP",
            "og:url": "https://www.tripadvisor.jp/Hotel_Review-g14133667-d25267575-Reviews-HOTEL_GROOVE_SHINJUKU_A_PARKROYAL_Hotel-Kabukicho_Shinjuku_Tokyo_Tokyo_Prefecture_K.html",
            "format-detection": "telephone=no"
          }
        ],
        "cse_image": [
          {
            "src": "https://media-cdn.tripadvisor.com/media/photo-s/29/f1/bb/66/view-premier-king-image.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "【格安・口コミで比較】新宿区のエアコンクリーニング業者 ...",
      "htmlTitle": "【格安・<b>口コミ</b>で<b>比較</b>】<b>新宿区</b>のエアコンクリーニング業者 ...",
      "link": "https://news.mynavi.jp/air-conditioner-cleaning/shinjuku/",
      "displayLink": "news.mynavi.jp",
      "snippet": "Sep 13, 2024 ... そこで、今回こちらでは、新宿区の業者さん530以上の価格・口コミ評判を徹底調査し、おすすめ6選でまとめました。 新宿区でどの業者がよいだろうと迷って ...",
      "htmlSnippet": "Sep 13, 2024 <b>...</b> そこで、今回こちらでは、<b>新宿区</b>の業者さん530以上の価格・<b>口コミ</b>評判を徹底<b>調査</b>し、おすすめ6選でまとめました。 <b>新宿区</b>でどの業者がよいだろうと迷って ...",
      "formattedUrl": "https://news.mynavi.jp/air-conditioner-cleaning/shinjuku/",
      "htmlFormattedUrl": "https://news.mynavi.jp/air-conditioner-cleaning/shinjuku/",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQM38mZXev3USVGxSuI0bwXxcjMqtu4kAKD4mQ3GC8hZOwGCrl0UEp0e3Xe&s",
            "width": "259",
            "height": "194"
          }
        ],
        "metatags": [
          {
            "msapplication-tilecolor": "#da532c",
            "msapplication-config": "/wp3/wp-content/uploads/fbrfg/browserconfig.xml",
            "theme-color": "#ffffff",
            "viewport": "width=device-width, initial-scale=1"
          }
        ],
        "cse_image": [
          {
            "src": "https://news.mynavi.jp/wp3/wp-content/uploads/2021/06/aircon-shinjuku-2023_R.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "【WiFiレンタル本舗】日本国内ポケットWiFiルーターレンタル店",
      "htmlTitle": "【WiFiレンタル本舗】日本国内ポケットWiFiルーターレンタル店",
      "link": "https://wifi-honpo.com/",
      "displayLink": "wifi-honpo.com",
      "snippet": "国内用ポケットWiFiを1日220円から翌日レンタル可能!無制限WiFiルーターあり、一時帰国や出張、引越し、入院、テレワークにも大活躍。顧客満足度No.1のWiFiレンタル ...",
      "htmlSnippet": "国内用ポケットWiFiを1日220円から翌日レンタル可能!無制限WiFiルーターあり、一時帰国や出張、引越し、入院、テレワークにも大活躍。顧客満足度No.1のWiFiレンタル ...",
      "formattedUrl": "https://wifi-honpo.com/",
      "htmlFormattedUrl": "https://wifi-honpo.com/",
      "pagemap": {
        "metatags": [
          {
            "og:type": "website",
            "twitter:card": "Summary with Large Image",
            "og:site_name": "WiFiレンタル本舗",
            "viewport": "width=device-width,initial-scale=1",
            "og:title": "日本国内用のWiFiレンタルなら【WiFiレンタル本舗】",
            "og:description": "国内用ポケットWiFiを1日220円から最短翌日レンタル可能!無制限WiFiルーターあり、一時帰国や出張、引越し、入院、テレワークにも大活躍。2021年顧客満足度No.1のWiFiレンタル本舗は日本最大級のWiFiレンタル専門店です。簡単ポスト返却のモバイルWiFiルーターをぜひご利用ください。"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "税務調査に強い新宿区(東京都)の税理士・会計事務所の紹介・検索一覧",
      "htmlTitle": "税務<b>調査</b>に強い<b>新宿区</b>(東京都)の税理士・会計事務所の紹介・検索一覧",
      "link": "https://www.zeiri4.com/p_tokyo/a_13104/c_1007/",
      "displayLink": "www.zeiri4.com",
      "snippet": "【税理士ドットコム】新宿で活躍中の税務調査対策に詳しい税理士事務所96件から自分に合った税理士を簡単に探すことができます。業種や会計ソフトなどに対応する税理士 ...",
      "htmlSnippet": "【税理士ドットコム】<b>新宿</b>で活躍中の税務<b>調査</b>対策に詳しい税理士事務所96件から自分に合った税理士を簡単に探すことができます。業種や会計ソフトなどに対応する税理士 ...",
      "formattedUrl": "https://www.zeiri4.com/p_tokyo/a_13104/c_1007/",
      "htmlFormattedUrl": "https://www.zeiri4.com/p_tokyo/a_13104/c_1007/",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRMuwbETOaUGcsQ2_cSufmxy-w7qg0RrJy9u74j8kiWLMQlSdP8MBYF8fFP&s",
            "width": "310",
            "height": "163"
          }
        ],
        "metatags": [
          {
            "og:image": "https://www.zeiri4.com/img/pc/opengraph/zeiri4_l.jpg",
            "gtm.is_customer_logged_in": "false",
            "viewport": "width=device-width, initial-scale=1.0, minimum-scale=1.0"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.zeiri4.com/img/pc/opengraph/zeiri4_l.jpg"
          }
        ],
        "listitem": [
          {
            "item": "税理士ドットコム",
            "name": "税理士ドットコム",
            "position": "1"
          },
          {
            "item": "税理士検索",
            "name": "税理士検索",
            "position": "2"
          },
          {
            "item": "東京都",
            "name": "東京都",
            "position": "3"
          },
          {
            "item": "新宿区",
            "name": "新宿区",
            "position": "4"
          },
          {
            "item": "税務調査",
            "name": "税務調査",
            "position": "5"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "新宿区(東京都)の葬儀場・斎場一覧 - 29件/家族葬のご案内 葬儀 ...",
      "htmlTitle": "<b>新宿区</b>(東京都)の葬儀場・斎場一覧 - 29件/家族葬のご案内  葬儀 ...",
      "link": "https://www.e-sogi.com/list_city_hall/id13104.html",
      "displayLink": "www.e-sogi.com",
      "snippet": "新宿区には、比較的低い料金で簡素ながら心のこもった葬儀を行うことができる ... 口コミ・満足度など調査を行い、ランキング化しています。 条件を選択する. 駅近",
      "htmlSnippet": "<b>新宿区</b>には、<b>比較</b>的低い<b>料金</b>で簡素ながら心のこもった葬儀を行うことができる ... <b>口コミ</b>・満足度など<b>調査</b>を行い、ランキング化しています。 条件を選択する. 駅近",
      "formattedUrl": "https://www.e-sogi.com/list_city_hall/id13104.html",
      "htmlFormattedUrl": "https://www.e-sogi.com/list_city_hall/id13104.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZ8q0bR6dgZ0mUKzrp8AwVPmxin4-VkAYS3hfVpi8kWgo2jhDZbIDWglw&s",
            "width": "225",
            "height": "225"
          }
        ],
        "metatags": [
          {
            "og:image": "https://www.e-sogi.com/common_img/og-image.jpg",
            "og:site_name": "いい葬儀",
            "viewport": "width=device-width, initial-scale=1",
            "og:title": "新宿区(東京都)の葬儀場・斎場一覧 - 29件/家族葬のご案内▶葬儀費用8.2万円から|いい葬儀【公式】",
            "og:url": "https://www.e-sogi.com/list_city_hall/id13104.html",
            "og:description": "東京都新宿区付近の葬儀場・斎場を一覧や地図から探せます。葬儀プラン、口コミ、費用相場、火葬場情報なども掲載。✨累計相談数100万件以上 ✨葬儀・家族葬の相談は24時間365日\0120-393-100/日本最大級の葬儀相談・依頼サイト「いい葬儀」",
            "format-detection": "telephone=no",
            "facebook-domain-verification": "vcnykyplmk8i9ynxs0yaoo51haz0t9"
          }
        ],
        "cse_image": [
          {
            "src": "https://www.e-sogi.com/common_img/og-image.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "変なホテル東京 羽田 料金比較・宿泊予約 - 価格.com",
      "htmlTitle": "変な<b>ホテル</b>東京 羽田 <b>料金比較</b>・宿泊予約 - 価格.com",
      "link": "https://travel.kakaku.com/%E5%9B%BD%E5%86%85%E5%AE%BF%E6%B3%8A%E4%BA%88%E7%B4%84/%E5%A4%89%E3%81%AA%E3%83%9B%E3%83%86%E3%83%AB%E6%9D%B1%E4%BA%AC%20%E7%BE%BD%E7%94%B0-11709187/",
      "displayLink": "travel.kakaku.com",
      "snippet": "変なホテル東京 羽田の宿泊プランや料金を複数の予約サイトから比較、最安値から検討!クチコミやキャンペーン情報も掲載。空室状況や1泊あたりの予算、食事などの ...",
      "htmlSnippet": "変な<b>ホテル</b>東京 羽田の宿泊プランや<b>料金</b>を複数の予約サイトから<b>比較</b>、最安値から検討!<b>クチコミ</b>やキャンペーン情報も掲載。空室状況や1泊あたりの予算、食事などの ...",
      "formattedUrl": "https://travel.kakaku.com/.../変なホテル東京%20羽田-11709187/",
      "htmlFormattedUrl": "https://travel.kakaku.com/.../変なホテル東京%20羽田-11709187/",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIrvonG2DPxnMX-r8UwI2aL5EaxTq90CI7l_WVScwW_QPpAH5Ae7P52D3v&s",
            "width": "200",
            "height": "200"
          }
        ],
        "metatags": [
          {
            "og:image": "https://img1.kakaku.k-img.com/images/logo/200x200_01.gif",
            "og:type": "article",
            "og:site_name": "価格.com 旅行・トラベル",
            "viewport": "width=device-width, initial-scale=1.0, minimum-scale=1,maximum-scale=1",
            "og:title": "変なホテル東京 羽田 料金比較・宿泊予約 - 価格.com",
            "fb:admins": "100001677628430",
            "og:url": "https://travel.kakaku.com/%E5%9B%BD%E5%86%85%E5%AE%BF%E6%B3%8A%E4%BA%88%E7%B4%84/%E5%A4%89%E3%81%AA%E3%83%9B%E3%83%86%E3%83%AB%E6%9D%B1%E4%BA%AC%20%E7%BE%BD%E7%94%B0-11709187/",
            "format-detection": "telephone=no"
          }
        ],
        "cse_image": [
          {
            "src": "https://img1.kakaku.k-img.com/images/logo/200x200_01.gif"
          }
        ]
      }
    }
  ]
}
=== 1 ===
  タイトル: 価格.com - 「買ってよかった」をすべてのひとに。
  リンク: https://kakaku.com/
  スニペット: 「買ってよかった!」と思えるお買い物は価格.comから! パソコンや家電から、ファッション、食品に至るまで、あらゆる製品・サービスを、販売価格やクチコミ情報、 ...
---
=== 2 ===
  タイトル: 新宿の探偵の料金比較|浮気調査に強いAkai探偵事務所-新宿店
  リンク: https://www.akai-tantei.com/share/tokyo/shinjuku/
  スニペット: 人が密集しているので、尾行の難易度は、かなり高めですし、ホテル ... 新宿区の浮気調査の料金比較表. 新宿の浮気調査100%成功報酬の比較表. Akai探偵事務所、新宿の口コミ.
---
=== 3 ===
  タイトル: 東新宿のおすすめ英会話教室4選!マンツーマンありのスクールを比較
  リンク: https://kirinjishimarathon.jp/higashishinjuku/
  スニペット: Dec 12, 2022 ... 東新宿駅近郊でマンツーマンありの英会話スクールを調査・比較!料金プラン、駅からの近さ、口コミ評判などをまとめました。英会話教室選びの参考に ...
---
=== 4 ===
  タイトル: 豊島区の探偵料金とのクーポン券|浮気調査に強いAkai探偵
  リンク: https://www.akai-tantei.com/share/tokyo/toshima-ku/
  スニペット: (料金詳細と比較表は、上部Menu参照). 東京都豊島区の浮気調査の料金比較表. 東京都豊島区の浮気調査100%成功報酬の比較表. 豊島区を含むGoogleマップの口コミ. Akai探偵 ...
---
=== 5 ===
  タイトル: HOTEL GROOVE SHINJUKU, A PARKROYAL HOTEL【 2024年 ...
  リンク: https://www.tripadvisor.jp/Hotel_Review-g14133667-d25267575-Reviews-HOTEL_GROOVE_SHINJUKU_A_PARKROYAL_Hotel-Kabukicho_Shinjuku_Tokyo_Tokyo_Prefecture_K.html
  スニペット: ... 料金比較・口コミ・宿泊予約 】- トリップアドバイザー. アジア日本関東地方東京都東京都心新宿区歌舞伎町歌舞伎町 ホテル HOTEL GROOVE SHINJUKU, A PARKROYAL HOTEL.
---
=== 6 ===
  タイトル: 【格安・口コミで比較】新宿区のエアコンクリーニング業者 ...
  リンク: https://news.mynavi.jp/air-conditioner-cleaning/shinjuku/
  スニペット: Sep 13, 2024 ... そこで、今回こちらでは、新宿区の業者さん530以上の価格・口コミ評判を徹底調査し、おすすめ6選でまとめました。 新宿区でどの業者がよいだろうと迷って ...
---
=== 7 ===
  タイトル: 【WiFiレンタル本舗】日本国内ポケットWiFiルーターレンタル店
  リンク: https://wifi-honpo.com/
  スニペット: 国内用ポケットWiFiを1日220円から翌日レンタル可能!無制限WiFiルーターあり、一時帰国や出張、引越し、入院、テレワークにも大活躍。顧客満足度No.1のWiFiレンタル ...
---
=== 8 ===
  タイトル: 税務調査に強い新宿区(東京都)の税理士・会計事務所の紹介・検索一覧
  リンク: https://www.zeiri4.com/p_tokyo/a_13104/c_1007/
  スニペット: 【税理士ドットコム】新宿で活躍中の税務調査対策に詳しい税理士事務所96件から自分に合った税理士を簡単に探すことができます。業種や会計ソフトなどに対応する税理士 ...
---
=== 9 ===
  タイトル: 新宿区(東京都)の葬儀場・斎場一覧 - 29件/家族葬のご案内 葬儀 ...
  リンク: https://www.e-sogi.com/list_city_hall/id13104.html
  スニペット: 新宿区には、比較的低い料金で簡素ながら心のこもった葬儀を行うことができる ... 口コミ・満足度など調査を行い、ランキング化しています。 条件を選択する. 駅近
---
=== 10 ===
  タイトル: 変なホテル東京 羽田 料金比較・宿泊予約 - 価格.com
  リンク: https://travel.kakaku.com/%E5%9B%BD%E5%86%85%E5%AE%BF%E6%B3%8A%E4%BA%88%E7%B4%84/%E5%A4%89%E3%81%AA%E3%83%9B%E3%83%86%E3%83%AB%E6%9D%B1%E4%BA%AC%20%E7%BE%BD%E7%94%B0-11709187/
  スニペット: 変なホテル東京 羽田の宿泊プランや料金を複数の予約サイトから比較、最安値から検討!クチコミやキャンペーン情報も掲載。空室状況や1泊あたりの予算、食事などの ...

料金と口コミをうまく網羅的に取得できないので、少しコードを変えて再チャレンジしてみます。

修正したCustom Search JSON APIのコードはこちら
import requests
import json
import re

def search_google(query, api_key, custom_search_engine_id=None, num_results=5):
    base_url = "https://www.googleapis.com/customsearch/v1"
    params = {
        "key": api_key,
        "q": query,
        "cx": custom_search_engine_id, 
        "num": num_results,
        "start": 1 
    }

    if custom_search_engine_id is None:
        del params["cx"]

    try:
        response = requests.get(base_url, params=params)
        response.raise_for_status() 
        search_results = response.json()
        return search_results
    except requests.exceptions.RequestException as e:
        print(f"エラーが発生しました: {e}")
        return None


def extract_hotel_info(search_results):
    hotel_info_list = []
    if search_results and 'items' in search_results:
        for item in search_results['items']:
            title = item.get('title', '')
            link = item.get('link', '')
            snippet = item.get('snippet', '')
            price_match = re.search(r'(\d{1,3}(,\d{3})*(\.\d+)?)(円|¥|ドル)', snippet)
            price = price_match.group(0) if price_match else "料金情報なし"
            is_review_site = "口コミ" in title or "レビュー" in title or "評価" in title
            hotel_info = {
                "title": title,
                "link": link,
                "price": price,
                "is_review_site": is_review_site
            }
            hotel_info_list.append(hotel_info)
    return hotel_info_list


if __name__ == "__main__":
    api_key = "" 
    custom_search_engine_id = ""

    search_query = "新宿区 下落合 ホテル" 
    results = search_google(search_query, api_key, custom_search_engine_id)

    if results:
      hotel_data = extract_hotel_info(results)
      for index, hotel in enumerate(hotel_data):
          print(f"=== {index + 1} ===")
          print(f"  ホテル名: {hotel['title']}")
          print(f"  URL: {hotel['link']}")
          print(f"  料金: {hotel['price']}")
          if hotel['is_review_site']:
              print("  口コミサイトです")
          print("---")
    else:
      print("検索結果が見つかりませんでした")
結果はこちら
=== 1 ===
  ホテル名: 楽天トラベル:下落合駅 周辺のホテル・旅館
  URL: https://travel.rakuten.co.jp/yado/traffic/tokyo/00000000000000203607.html
  料金: 料金情報なし
---
=== 2 ===
  ホテル名: 下落合駅に近いおすすめビジネスホテル - 宿泊予約は[一休.com]
  URL: https://www.ikyu.com/biz/station/ms2200703/?accommodation_types=BUSINESS
  料金: 料金情報なし
---
=== 3 ===
  ホテル名: トリミング・ホテル | もとい動物病院 | 新宿区 下落合 目白
  URL: https://www.vet-motoi.com/sub04.html
  料金: 料金情報なし
---
=== 4 ===
  ホテル名: 下落合駅に近いおすすめホテル・旅館 【Yahoo!トラベル】
  URL: https://travel.yahoo.co.jp/station/ms2200703/
  料金: 料金情報なし
---
=== 5 ===
  ホテル名: もとい動物病院 | 新宿区 下落合 目白 | 年中無休・日曜日も診察
  URL: https://www.vet-motoi.com/
  料金: 料金情報なし

複数の条件に当てはまる結果を出力するのは、SerperもCustom Search APIも苦手なのかもしれません。APIを使うときは検索キーワードに気をつけて検索するのが良さそうです。

具体的な活用事例

Serper APIとCustom Search JSON APIの使い方について解説をしてきましたが、ここではそれぞれの具体的な活用事例を紹介したいと思います。

Serper APIの活用事例

Serper APIもCustom Search JSON APIも検索順位が出力されますが、どちらかというとSerper APIの方がSEO分析には向いています

Serper APIでは検索順位だけではなく、関連キーワードや被リンク情報、SERPの特徴なども出力されます。また、検索エンジンはGoogleのみならずBingやYoutubeなどからの検索結果を取得可能です。

なので、SEO分析を行いたい場合にはSerper APIを使うのも一つの方法と言えるでしょう。

例えば以下のようなコードを使えば、検索順位やタイトル、スニペットを一目で確認できます。

サンプルコードはこちら
import requests
import json
import pandas as pd

def search_serper(query, api_key, engine="google"):

  url = "https://google.serper.dev/search"
  payload = json.dumps({
    "q": query,
    "gl": "jp",
    "engine": engine
  })
  headers = {
    'X-API-KEY': api_key,
    'Content-Type': 'application/json'
  }

  try:
    response = requests.post(url, headers=headers, data=payload)
    response.raise_for_status() 
    search_results = response.json()
    return search_results
  except requests.exceptions.RequestException as e:
    print(f"エラーが発生しました: {e}")
    return None

def analyze_seo_data(search_results):
  if not search_results:
      return None

  organic_results = search_results.get('organic', [])
  related_searches = search_results.get('relatedSearches', [])

  data = []
  for index, item in enumerate(organic_results):
      data.append({
          "順位": item.get("position"),
          "タイトル": item.get("title"),
          "URL": item.get("link"),
          "スニペット": item.get("snippet")
      })

  df = pd.DataFrame(data)
  related_keywords = [item['query'] for item in related_searches]
  return df, related_keywords

if __name__ == "__main__":
  api_key = ""
  search_query = "SEO対策"
  search_engine = "google" 
  results = search_serper(search_query, api_key, search_engine)

  if results:
    df, related_keywords = analyze_seo_data(results)
    print(f"検索結果({search_engine})")
    print(df)
    print("\n関連キーワード:")
    print(related_keywords)
  else:
    print("検索に失敗しました。")
結果はこちら
検索結果(google)
   順位                                      タイトル                                                URL                                              スニペット
0   1            【最新版】正しいSEOとは?5つのSEO対策とチェックリスト            https://mieru-ca.com/blog/seo-measures/  長期的に取り組んでいきたい5つのSEO対策の考え方 · ① 検索意図に応えるコンテンツを設計...
1   2       【2024年最新】SEOとは?SEO対策の基本から施策方法までを解説!  https://www.willgate.co.jp/promonista/seo-how-...  SEO対策には、様々な手法がありますが、大きく内部対策、外部対策、コンテンツ制作の3つに分類...
2   3        【初心者向けSEO対策のやり方】まずはこれだけ!上位表示する ...                https://valueagent.co.jp/blog/27063  基本的なSEO対策の方法5つ · (1)内部対策 (サイトの情報をロボットが読みやすいように...
3   4            自分でできる!SEO対策「28選」|難易度別の施策を徹底解説         https://www.axis-corp.com/quest/seo-myself  本記事では、自分でできるSEO対策を28選、難易度別にまとめています。外注せずにSEO対策を...
4   5                SEOとは? - HP初心者むけ基本のSEO対策方法                     https://www.akibare-hp.jp/seo/  キーワード選びや難しい設定部分は制作会社にやってもらい、簡単な部分だけをマーケティングCMS...
5   6  【2024年最新版】超初心者OK!SEO対策完全講義!(基礎 - YouTube        https://www.youtube.com/watch?v=SOg2c8WrdT0  動画をご覧いただきありがとうございます。 本日は2024年の最新のトレンドを踏まえたSEO対...
6   7     【2024年最新】SEOとは?SEO対策の基本や具体的施策8つなど ...                    https://seolaboratory.jp/91744/  SEO対策とは、「SEO」と同義で扱われやすい語句ですが、とくにSEOを目的に行う対策のこと...
7   8               SEOとは?SEO対策で上位表示する効果的な施策と事例           https://www.plan-b.co.jp/blog/seo/57421/  SEO対策とは「検索エンジン最適化」を意味し、検索エンジン上で自社サイトを上位表示させるため...
8   9     【2024年最新】SEOとは?SEO対策の基本や施策をプロがわかり ...                https://www.seohacks.net/blog/1066/  SEO対策とは、検索エンジン最適化施策を意味する言葉です。具体的には、Googleなどの検索...

関連キーワード:
['Customer relationshi...', 'seo対策とは わかりやすく', 'seo対策 意味ない', 'seoとは', 'seo対策 費用', 'seo対策 具体例', 'seo対策とは 初心者', 'seo 対策 自分で', 'seo対策 何をすればいい']

その他にもSerperでは論文やニュースなどを調べるためのTypeが用意されているので、幅広い分野に対応しているのはSerper APIと言えるでしょう。

Custom Search JSON APIの活用事例

Custom Search JSON APIはカスタム検索エンジンを設定することができるため、社内のWebサイトも指定することができます

社内のWebサイトを指定することで、社内ドキュメントを迅速に見つけることができたり、ドキュメントが多いため、キーワード検索だけでは目的の情報にたどり着きにくいという場合に活用できます。

また、検索結果をドキュメントのタイトル、社内WebサイトのURL、要約などを出力することで、短時間で目的とするドキュメントにたどり着くことができるでしょう。

まとめ

本記事ではSerper APIとCustom Search JSON APIについて解説をしました。幅広い分野やさまざまな検索エンジンから結果を得たい場合にはSerper APIがおすすめかなと感じます。

一方で社内WebサイトやGoogleからの結果のみを取得したいなど限られた用途での使用を考えている場合にはCustom Search JSON APIが良いでしょう。

使い始めるまでのハードルとしてはSerper APIがかなりハードルは低いかなとも思いますので、まずはSerper APIから始めてみるのがいいのではないでしょうか。

ぜひ本記事を参考に、Serper APIとCustom Search JSON APIを使ってみてくださいね!

最後に

いかがだったでしょうか?

検索APIの選択次第で、SEO分析や情報収集の精度が劇的に向上する可能性があります。Serper APIとCustom Search JSON API、それぞれの強みを活かしてビジネスの課題を解決する方法を、私たちと一緒に見つけてみませんか?

株式会社WEELは、自社・業務特化の効果が出るAIプロダクト開発が強みです!

開発実績として、

・新規事業室での「リサーチ」「分析」「事業計画検討」を70%自動化するAIエージェント
・社内お問い合わせの1次回答を自動化するRAG型のチャットボット
・過去事例や最新情報を加味して、10秒で記事のたたき台を作成できるAIプロダクト
・お客様からのメール対応の工数を80%削減したAIメール
・サーバーやAI PCを活用したオンプレでの生成AI活用
・生徒の感情や学習状況を踏まえ、勉強をアシストするAIアシスタント

などの開発実績がございます。

まずは、無料相談にてご相談を承っておりますので、ご興味がある方はぜひご連絡ください。

➡︎生成AIを使った業務効率化、生成AIツールの開発について相談をしてみる。

生成AIを社内で活用していきたい方へ
LLM比較レポート

「生成AIを社内で活用したい」「生成AIの事業をやっていきたい」という方に向けて、生成AI社内セミナー・勉強会をさせていただいております。

セミナー内容や料金については、ご相談ください。

また、大規模言語モデル(LLM)を対象に、言語理解能力、生成能力、応答速度の各側面について比較・検証した資料も配布しております。この機会にぜひご活用ください。

投稿者

  • 翔平

    総合病院で10年間理学療法士として勤務し、その後Pythonを独学で学びデータアナリストとして転職。趣味はキックボクシング

  • URLをコピーしました!
  • URLをコピーしました!
目次