Google AI Mode API — 回答と引用を収集

Google AI Mode の消費者向け画面から回答・引用・検索データを JSON で収集し、GEO を測定します。

Google AI Mode conversational answer recommending earbuds, with a source panel and follow-up input.

レスポンス構造

回答本文、引用元、検索クエリなど、このエンジンが返す構造化フィールドを確認できます。

  • text, markdown: the conversational Google AI Mode answer.
  • sources: the cited pages returned with that answer; preserve these alongside the full response.
  • taskType: AIMODE with payload.query selects AI Mode. Use GOOGLE in a separate request to measure AI Overviews.
{
  "task": {
    "taskType": "AIMODE"
  },
  "response": {
    "sources": [
      {
        "url": "https://www.rtings.com/headphones/reviews/best/wireless-earbuds",
        "label": "RTINGS.com (+1) - Related results",
        "position": 1
      },
      {
        "url": "https://www.bestbuy.com/product/bose-quietcomfort-ultra-earbuds-2nd-gen-true-wireless-noise-cancelling-in-ear-earbuds-with-immersive-audio-black/J7C5V6WCKZ/sku/6628900",
        "label": "Best Buysn._setImageSrc('img-VBeiarKEOqOrmLQPgbPn4A8_8','data:image\\/jpeg;base64,\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys\\/RD84QzQ",
        "position": 2
      },
      {
        "url": "https://bose.com/p/in-ear/bose-quietcomfort-headphones/QCEARB24-HEADPHONEIN-DDPMNT-WW.html?srsltid=AfmBOopSWVnMoZsTe-s7lRVx33x-GwqE6r0mDIQhAG9H7WkHN_AtM9MX_f4",
        "label": "Bose Store",
        "position": 3
      },
      {
        "url": "https://www.target.com/p/beats-solo-buds-true-wireless-bluetooth-earbuds-transparent-red/-/A-92146819",
        "label": "Target",
        "position": 4
      }
    ],
    "text": "The Bose QuietComfort Ultra Earbuds (2nd Gen)\nGo to product viewer dialog for this item. and the budget-friendly Anker Soundcore Space A40\nGo to product viewer dialog for this item. are the best wireless earbuds for commuting, offering top-tier active noise cancellation (ANC) to block out subway rumbles and bus engine noise.\nTop Wireless Earbuds for Commuting\nPrice: ~$249 – $299\nBest For: Absolute silence and supreme comfort.\nKey Features: World-class adjustable ANC, CustomTune technology that calibrates sound to your ear shape, and Bose Immersive Audio spatial sound. Offers up to 6 hours of battery life (4 hours with immersive mode) plus an IPX4 water-resistance rating. You can check availability at local retailers via Best Buy.\nPrice: Under $100\nBest For: Value and price-to-performance ratio.\nKey Features: Adaptive ANC that automatically scales to transit noise, multipoint Bluetooth pairing, and an impressive 8 hours of continuous battery life with ANC on (plus 4 extra charges in the case).\nPrice: ~$149\nBest For: Heavy-duty noise isolation on a moderate budget.\nKey Features: Features 11 levels of adjustable noise cancellation, secure stability bands for crowded trains, and up to 8.5 hours of battery life. Available directly from the Bose Store.\nPrice: ~$70\nBest For: Ultra-portable pocket minimalist design.\nKey Features: Tiny form-factor case, robust Apple/Android one-touch pairing, and up to 18 hours of combined power. Note that they rely on passive noise isolation rather than active noise cancellation. Check stock locally through Target.\nIf you want to narrow down your choice, tell me:\nWhat is your maximum budget?\nDo you prefer a stem design (like AirPods) or a bud design?\nWhat phone do you use (iPhone or Android)?"
  }
}

ブランドの言及と引用を分析する

同じ質問を複数回実行し、ブランドの言及と引用元の変化を市場別に比較します。

API で回答を収集する

API キーを使って質問を送信し、完了した task の response を保存します。

curl -X POST https://api.querying.ai/v1/async/task \
  -H "Authorization: Bearer $QUERYING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "taskType": "AIMODE",
  "payload": {
    "query": "通勤におすすめのワイヤレスイヤホン",
    "country": "JP"
  }
}'

完了したレスポンスを読む

task.id で結果を取得し、完了した response のエンジン固有フィールドを読みます。

curl https://api.querying.ai/v1/async/task/TASK_ID \
  -H "Authorization: Bearer $QUERYING_API_KEY"

料金と利用範囲

プラン別リクエスト料金
プラン1 回1,000 回
Basic≈ $0.00400≈ $4.00
Max≈ $0.00190≈ $1.90

月間クレジットをすべて使った場合の換算料金です。

完了したリクエストはエンジンごとのクレジットを使用します。失敗したリクエストは課金されません。

結果を解釈する際の注意点

回答と任意フィールドは実行ごとに変わります。1 回の回答を市場全体の代表値として扱わないでください。

API ドキュメント

関連機能