Skip to main content
This section documents the shopping cards data returned by the Google AI Mode endpoint. Shopping cards are part of the AI Mode response — no separate API call is needed.

Example request

Shopping cards are intent-detected: send a prompt that expresses shopping intent (for example, asking for products, prices, or where to buy). No flag is required.
{
  "prompt": "best wireless headphones under $200",
  "country": "US"
}
This produces a response containing the shoppingCards array documented below.

Overview

Shopping product information extracted from the response when AI Mode detects shopping intent.

Shopping card structure

FieldTypeDescription
titlestringProduct title
priceobjectStructured pricing with value and currency
storestringMerchant/store name
ratingnumberProduct rating
product_linkstringDirect product URL

Response example

{
  "success": true,
  "result": {
    "text": "Here are some highly-rated wireless headphones under $200...",
    "shoppingCards": [
      {
        "title": "Sony WH-CH720N Noise Cancelling Headphones",
        "price": {
          "value": 149.99,
          "currency": "$"
        },
        "store": "Amazon",
        "rating": 4.5,
        "product_link": "https://www.amazon.com/sony-wh-ch720n"
      }
    ]
  }
}