> ## Documentation Index
> Fetch the complete documentation index at: https://help.decodo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Ads

> 网页抓取 API Google Ads 模板

`google_ads` 模板旨在获取 Google 搜索和 Google AI 概览结果，优先显示付费广告，以最高的广告展示率为目标。它将输出限制为每页十个结果，最大化付费广告出现的可能性。

<Note>
  ### 有用的链接

  * 有关优化 **AI 概览率**的更多信息，请参阅[**此处**](https://help.decodo.com/docs/cn/ai-overview)。
  * 此模板支持[**实时**](https://help.decodo.com/docs/cn/web-scraping-api-real-time-requests)和[**异步**](https://help.decodo.com/docs/cn/web-scraping-api-asynchronous-requests)集成方法。
  * 还支持[**批量**](https://help.decodo.com/docs/cn/web-scraping-api-asynchronous-requests#queue-multiple-tasks)请求。
</Note>

## 输入参数

Google Ads 模板可用的请求参数：

| 参数                        | 类型      | 必需 | 描述                                                                                                                                                                                                               |
| ------------------------- | ------- | -- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `target`                  | string  | ✅  | 目标类型必须设置为 `google_ads`。                                                                                                                                                                                          |
| `query`                   | string  | ✅  | 搜索查询。                                                                                                                                                                                                            |
| `headless`                | string  |    | `html` 值启用 JavaScript 渲染。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-javascript-rendering)<br />`png` 值启用截图响应。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-screenshot-response) |
| `parse`                   | boolean |    | 设置为 `true` 时自动解析结果。<br />默认值为 `false`。                                                                                                                                                                           |
| `geo`                     | string  |    | 设置提交查询时使用的国家/地区。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-google-geolocation.mdx)                                                                                                             |
| `locale`                  | string  |    | 设置该值以更改 Google 搜索页面的网页界面语言。[**了解更多。**](web-scraping-api-google-interface-localization)                                                                                                                           |
| `device_type`             | string  |    | 指定设备类型和浏览器。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-device-types)                                                                                                                            |
| `page_from`               | string  |    | 自定义起始页码，范围为 `1` 到 `10`。<br />默认值为 `1`。                                                                                                                                                                           |
| `page_count`              | integer |    | 自定义所需的页数，范围为 `1` 到 `10`。<br />每页提供 10 个搜索结果。<br />默认值为 `1`。                                                                                                                                                      |
| `google_results_language` | string  |    | 以指定语言返回结果。查看所有选项[**此处**](https://help.decodo.com/docs/cn/web-scraping-api-results-language-list)。                                                                                                                |
| `google_tbm`              | string  |    | 过滤特定类型内容的搜索结果（新闻、应用、视频等）。更多信息[**此处**](https://stenevang.wordpress.com/2013/02/22/google-advanced-power-search-url-request-parameters/)。示例值：`app`。                                                                |
| `google_tbs`              | string  |    | 此参数包含按日期限制/排序结果等参数。更多信息[**此处**](https://stenevang.wordpress.com/2013/02/22/google-advanced-power-search-url-request-parameters/)。示例：`qdr:w`（上周的结果）。                                                              |
| `google_nfpr`             | boolean |    | 设置为 `true` 时关闭拼写自动更正。<br />默认值为 `false`。                                                                                                                                                                         |
| `xhr`                     | boolean |    | 设置为 `true` 以检索 XHR 和 fetch 请求列表。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-fetch-and-xhr)<br />默认值为 `false`。                                                                                   |
| `markdown`                | boolean |    | 设置为 `true` 以接收 Markdown 响应。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-markdown-response)<br />默认值为 `false`。                                                                                    |

### 请求示例

<CodeGroup>
  ```shellscript cURL theme={null}
  # 更新 'TOKEN VALUE' 为您的授权令牌
  curl --request 'POST' \
          --url 'https://scraper-api.decodo.com/v2/scrape' \
          --header 'Accept: application/json' \
          --header 'Authorization: Basic TOKEN VALUE' \
          --header 'Content-Type: application/json' \
          --data '
      {
        "target": "google_ads",
        "query": "laptop",
        "headless": "html",
        "page_from": "1",
        "google_results_language": "en",
        "parse": true
      }
  '
  ```

  ```javascript Node theme={null}

  const scrape = async() => {
    const response = await fetch("https://scraper-api.decodo.com/v2/scrape", {
      method: "POST",
      body: JSON.stringify({
        "target": "google_ads",
        "query": "pizza",
        "headless": "html",
        "page_from": "1",
        "google_results_language": "en",
        "parse": true
      }),
      headers: {
        "Content-Type": "application/json",
        "Authorization": "Basic TOKEN VALUE" // 更新为您的授权令牌
      },
    }).catch(error => console.log(error));

    console.log(await response.json())
  }

  scrape()
  ```

  ```python Python theme={null}
  import requests
    
  url = "https://scraper-api.decodo.com/v2/scrape"
    
  payload = {
        "target": "google_ads",
        "query": "pizza",
        "headless": "html",
        "page_from": "1",
        "google_results_language": "en",
        "parse": True
  }
    
  headers = {
      "accept": "application/json",
      "content-type": "application/json",
      "authorization": "Basic TOKEN VALUE" # 更新为您的授权令牌
  }
    
  response = requests.post(url, json=payload, headers=headers)
    
  print(response.text)
  ```
</CodeGroup>

## 输出

下表提供了已解析的 `JSON` `results` 部分中字段的描述。请注意，字段数量可能会根据提供的搜索查询而有所不同。

| 结果键                      | 描述                                          |
| ------------------------ | ------------------------------------------- |
| `pla`                    | 产品广告及其详细信息的对象。                              |
| `paid`                   | 赞助结果及其详细信息的数组。                              |
| `images`                 | 图片结果及其详细信息的对象。                              |
| `flights`                | 航班及其详细信息的对象。                                |
| `organic`                | 自然列表及其详细信息的数组。                              |
| `organic_videos`         | 自然视频及其详细信息的数组。                              |
| `top_sights`             | 地标或景点及其详细信息的数组。                             |
| `jobs`                   | 职位及其详细信息的对象。                                |
| `local_service_ads`      | 赞助本地服务提供商的对象。                               |
| `video_box`              | 视频项目及其详细信息的对象。                              |
| `recipes`                | 食谱及其详细信息的对象。                                |
| `twitter`                | X（以前的 Twitter）结果及其详细信息的数组。                  |
| `knowledge`              | 从知识面板收集的信息对象。                               |
| `local_pack`             | 与查询相关的本地商家列表对象。                             |
| `item_carousel`          | 信息查询的说明性项目及其详细信息的对象。                        |
| `videos`                 | 视频及其详细信息的对象。                                |
| `hotels`                 | 与查询位置相关的酒店对象。                               |
| `apps`                   | 应用程序及其详细信息的数组。                              |
| `finance`                | 公司财务数据的对象，包括股票价格、市值和其他基本指标。                 |
| `sports_games`           | 最近体育赛事的对象，包括比分、球队、比赛类型和关键亮点。                |
| `discussions_and_forums` | 讨论主题和论坛帖子的对象，包括其 URL、标题、来源和评论数。             |
| `featured_snippet`       | 从结果页面的自然部分检索的特定结果数组。                        |
| `top_stories`            | 当查询被识别为新闻导向时，文章及其详细信息的对象。                   |
| `popular_products`       | Google 购物产品列表的自然展示及其详细信息的对象。                |
| `related_searches`       | 在搜索结果页面的不同位置显示的一个或多个相关搜索块的数组。               |
| `related_questions`      | 相关基于问题的搜索查询及其详细信息的对象。                       |
| `what_people_are_saying` | 讨论主题和论坛帖子的数组，包括其 URL、标题、来源、热门评论、参与度指标和时间范围。 |
| `search_information`     | 与提交的搜索查询相关的信息对象。                            |

#### 响应示例

<CodeGroup>
  ```json JSON expandable theme={null}
  {
    "results": [
        {
            "content": {
                "results": {
                    "last_visible_page": 10,
                    "page": 1,
                    "parse_status_code": 12000,
                    "results": {
                        "ai_overviews": [
                            {
                                "answer_text": [
                                    {
                                        "pos": 1,
                                        "text": [
                                            "Laptops (ou notebooks) são computadores portáteis projetados para uso pessoal, alimentados por bateria e menores que computadores de mesa. Ideais para trabalho, estudos e lazer, variam de modelos básicos com processadores Intel Celeron a máquinas de alto desempenho para jogos (ex: Lenovo LOQ, Acer Nitro), geralmente com 8GB-16GB RAM e SSD."
                                        ]
                                    },
                                    {
                                        "pos": 2,
                                        "text": [
                                            "Principais Aspectos:"
                                        ]
                                    },
                                    {
                                        "pos": 3,
                                        "text": [
                                            "Para compra, modelos atuais focam em processadores Intel Core 13ª Ger ou Ryzen, focando em SSDs de 256GB256 cap G cap B256𝐺𝐵 a 512GB512 cap G cap B512𝐺𝐵 para maior velocidade."
                                        ]
                                    }
                                ],
                                "bullet_list": [
                                    {
                                        "list_title": "Principais características:",
                                        "points": [
                                            "Portabilidade: Projetado para ser transportado facilmente, pesando menos que um computador de mesa.",
                                            "Design Integrado: Tela, teclado, touchpad (mouse integrado) e bateria são parte de uma única unidade.",
                                            "Bateria Recarregável: Permite o uso sem estar conectado à energia por um período.",
                                            "Funcionalidade Completa: Executa softwares, navega na web, edita textos, assiste vídeos e joga, como um computador de mesa."
                                        ],
                                        "pos": 1
                                    },
                                    {
                                        "list_title": "Laptop vs.",
                                        "points": [
                                            "Origem: \"Laptop\" (colo) surgiu para diferenciar do \"desktop\" (mesa), e \"notebook\" (caderno) referia-se a modelos menores e mais leves, como cadernos universitários.",
                                            "Uso Atual: Hoje, os termos são usados como sinônimos no Brasil e no mundo para o mesmo tipo de computador portátil, sem distinção prática para o consumidor."
                                        ],
                                        "pos": 2
                                    }
                                ],
                                "pos_overall": 5,
                                "source_panel": {
                                    "items": [
                                        {
                                            "pos": 1,
                                            "source": "lenovo.com",
                                            "url": "https://www.lenovo.com/br/pt/glossary/what-is-laptop/"
                                        },
                                        {
                                            "pos": 2,
                                            "source": "pt.wikipedia.org",
                                            "url": "https://pt.wikipedia.org/wiki/Laptop"
                                        },
                                        {
                                            "pos": 3,
                                            "source": "magazineluiza.com.br",
                                            "url": "https://www.magazineluiza.com.br/busca/laptop/"
                                        },
                                        {
                                            "description": "Com tradução",
                                            "pos": 4,
                                            "source": "hp.com",
                                            "url": "https://translate.google.com/translate?u=https://www.hp.com/us-en/shop/tech-takes/laptop-vs-notebook&hl=pt&sl=en&tl=pt&client=sge"
                                        },
                                        {
                                            "pos": 5,
                                            "source": "amazon.com.br",
                                            "url": "https://www.amazon.com.br/b?ie=UTF8&node=16364755011"
                                        },
                                        {
                                            "pos": 6,
                                            "source": "tecnoblog.net",
                                            "url": "https://tecnoblog.net/responde/laptop-ou-notebook-entenda-a-confusao-em-torno-da-nomenclatura-do-portatil/"
                                        },
                                        {
                                            "pos": 7,
                                            "source": "tecmobile.com.br",
                                            "url": "https://www.tecmobile.com.br/blog/melhores-notebooks-para-trabalho/"
                                        },
                                        {
                                            "pos": 8,
                                            "source": "saldaodainformatica.com.br",
                                            "url": "https://www.saldaodainformatica.com.br/notebook"
                                        },
                                        {
                                            "pos": 9,
                                            "source": "techtudo.com.br",
                                            "url": "https://www.techtudo.com.br/guia/2025/12/vai-trocar-de-notebook-veja-o-que-realmente-importa-antes-de-gastar-edinfoeletro.ghtml"
                                        }
                                    ]
                                }
                            }
                        ],
                        "organic": [
                            {
                                "additional_info": [
                                    "4,7 classificação da loja (1,1 mil)",
                                    "Devolução em até 7 dia(s)"
                                ],
                                "desc": "Notebook 2 em 1 Positivo Duo Intel Celeron N4500 4GB RAM 128GB de Armazenamento Tela 11\" HD IPS touch com caneta capacitiva, Windows 11 Home – Cinza – C4128E.",
                                "favicon_text": "Amazon",
                                "pos": 1,
                                "pos_overall": 8,
                                "rating": 4.7,
                                "title": "Laptop Na Amazon.com.br",
                                "url": "https://www.amazon.com.br/laptop/s?k=laptop",
                                "url_shown": "https://www.amazon.com.br› laptop › k=laptop"
                            },
                            {
                                "additional_info": [
                                    "4,6 classificação da loja (2,5 mil)",
                                    "Loja por perto (4,2 km)",
                                    "Devolução em até 7 dia(s)"
                                ],
                                "desc": "Gente, o laptop ou notebook é um computador prático e fácil de usar, viu? Ele já vem com o próprio teclado, além de mouse, alto-falantes, microfone e câmera ...",
                                "favicon_text": "Magazine Luiza",
                                "pos": 2,
                                "pos_overall": 9,
                                "rating": 4.6,
                                "title": "Laptop",
                                "url": "https://www.magazineluiza.com.br/busca/laptop/",
                                "url_shown": "https://www.magazineluiza.com.br› busca › laptop"
                            },
                            {
                                "desc": "Notebook laptop na Casas Bahia em até 24x no site ou app. Compre Notebook laptop no Carnê e Pix com descontos e frete grátis.",
                                "favicon_text": "Casas Bahia",
                                "pos": 3,
                                "pos_overall": 10,
                                "title": "Notebook laptop",
                                "url": "https://www.casasbahia.com.br/notebook-laptop/b",
                                "url_shown": "https://www.casasbahia.com.br› notebook laptop"
                            },
                            {
                                "additional_info": [
                                    "4,0 classificação da loja (52)",
                                    "Frete grátis"
                                ],
                                "desc": "Confira os melhores notebooks e laptops 2 em 1 da Dell e aproveite ofertas exclusivas. · Filtros · Notebook Inspiron 15 · Notebook Gamer Alienware 16 Aurora.",
                                "favicon_text": "Dell",
                                "pos": 4,
                                "pos_overall": 11,
                                "rating": 4,
                                "title": "Notebooks | Dell Brasil",
                                "url": "https://www.dell.com/pt-br/shop/notebooks-dell/scr/laptops",
                                "url_shown": "https://www.dell.com› Brasil › Notebooks"
                            },
                            {
                                "desc": "World's leading brand of the best gaming laptops and creator laptops. Produce the thinnest, lightest, and high-performance laptops for gamers and creators.",
                                "favicon_text": "Gigabyte",
                                "pos": 5,
                                "pos_overall": 13,
                                "title": "Laptop - GIGABYTE Brazil",
                                "url": "https://www.gigabyte.com/br/Laptop",
                                "url_shown": "https://www.gigabyte.com› Home › Consumer"
                            },
                            {
                                "additional_info": [
                                    "4,6 classificação da loja (1,3 mil)"
                                ],
                                "desc": "Modelos com pelo menos 8GB de RAM, SSD de 256GB e processador i3 ou Ryzen 3 já oferecem ótimo desempenho. Notebooks com SSD são melhores? Sim!",
                                "favicon_text": "Shopee Brasil",
                                "pos": 6,
                                "pos_overall": 14,
                                "rating": 4.6,
                                "title": "Laptop em Oferta",
                                "url": "https://shopee.com.br/list/Laptop",
                                "url_shown": "https://shopee.com.br› list › Laptop"
                            },
                            {
                                "desc": "Frete grátis no dia ✓ Compre já Laptop parcelado sem juros! Saiba mais sobre nossas incríveis ofertas e promoções em milhões de produtos.",
                                "favicon_text": "Mercado Livre",
                                "pos": 7,
                                "pos_overall": 16,
                                "title": "Laptop",
                                "url": "https://lista.mercadolivre.com.br/laptop",
                                "url_shown": "https://lista.mercadolivre.com.br› ... › Mini Laptop"
                            },
                            {
                                "desc": "Compre os mais recentes notebooks e PCs 2 em 1 na Lenovo Brasil para escritório, gaming, entretenimento, estudantes e uso diário.",
                                "favicon_text": "Lenovo",
                                "pos": 8,
                                "pos_overall": 17,
                                "title": "Notebooks 2 em 1, Gaming, Ultrafinos e Ofertas",
                                "url": "https://www.lenovo.com/br/pt/laptops/?srsltid=AfmBOoo5nOUD5wVA4J-LyPSDemDD1wa0BFOGklVVa_pyu9KByyg2qdjk",
                                "url_shown": "https://www.lenovo.com› laptops"
                            },
                            {
                                "additional_info": [
                                    "3,9 classificação da loja (197)",
                                    "Loja por perto (4,3 km)",
                                    "Frete: R$ 9,99",
                                    "Devolução em até 7 dia(s)"
                                ],
                                "desc": "As melhores ofertas e marcas de notebook estão na Americanas: Dell, Samsung, Acer, Lenovo e mais, além de modelos Intel, AMD e gamer em promoção!",
                                "favicon_text": "Americanas",
                                "pos": 9,
                                "pos_overall": 18,
                                "rating": 3.9,
                                "title": "Notebook Dell, Samsung, Acer, Lenovo e Mais em Promoção",
                                "url": "https://www.americanas.com.br/computadores-e-informatica/notebook",
                                "url_shown": "https://www.americanas.com.br› notebook"
                            }
                        ],
                        "paid": [
                            {
                                "data_pcu": [
                                    "https://www.dell.com/",
                                    "https://ad.doubleclick.net/"
                                ],
                                "data_rw": "https://www.google.com/aclk?sa=L&ai=DChsSEwjlh4LK9rySAxW7a0gAHeyQMXcYACICCAEQAxoCY2U&co=1&ase=2&gclid=EAIaIQobChMI5YeCyva8kgMVu2tIAB3skDF3EAAYASAAEgIGJfD_BwE&category=acrcp_v1_37&sig=AOD64_1aRNCQCXSGs9ASkr5dkPTj58CGow&q&nis=4&adurl",
                                "desc": "Notebook Dell Com Processadores Intel® Core™ Ultra. Aproveite as promoções...",
                                "pos": 1,
                                "pos_overall": 1,
                                "sitelinks": {
                                    "expanded": [
                                        {
                                            "desc": "Confira nossas promoções no Site Aproveite Descontos em Notebooks",
                                            "title": "Ofertas em Notebooks Dell",
                                            "url": "https://www.dell.com/pt-br/shop/deals/promocao-notebook?sa=X&ved=2ahUKEwjo3_3J9rySAxUGD7kGHUy-OwUQqyQoAXoECBQQFw"
                                        },
                                        {
                                            "title": "Laptop 14' para trabalho",
                                            "url": "https://www.dell.com/pt-br/search/notebook%2014?sa=X&ved=2ahUKEwjo3_3J9rySAxUGD7kGHUy-OwUQqyQoA3oECBQQGg"
                                        }
                                    ]
                                },
                                "title": "Oferta Exclusiva Notebook Dell | Compre em até 12x Sem Juros",
                                "url": "https://www.dell.com/pt-br/shop/deals/promocao-notebook",
                                "url_shown": "https://www.dell.com"
                            },
                            {
                                "data_pcu": [
                                    "https://lista.mercadolivre.com.br/"
                                ],
                                "data_rw": "https://www.google.com/aclk?sa=L&ai=DChsSEwjlh4LK9rySAxW7a0gAHeyQMXcYACICCAEQAhoCY2U&co=1&ase=2&gclid=EAIaIQobChMI5YeCyva8kgMVu2tIAB3skDF3EAAYAiAAEgLSyfD_BwE&category=acrcp_v1_32&sig=AOD64_0k99-UJuaBSjZjE0gDTHFeUEssAQ&q&nis=4&adurl",
                                "desc": "Laptop no Mercado Livre com Frete grátis* a partir de R$19. Veja Condições.",
                                "pos": 2,
                                "pos_overall": 2,
                                "sitelinks": {
                                    "inline": [
                                        {
                                            "title": "Melhores Ofertas Mercado Livre",
                                            "url": "/aclk?sa=L&ai=DChsSEwjlh4LK9rySAxW7a0gAHeyQMXcYACICCAEQDRoCY2U&co=1&ase=2&gclid=EAIaIQobChMI5YeCyva8kgMVu2tIAB3skDF3EAAYAiAEEgIZDfD_BwE&category=acrcp_v1_32&sig=AOD64_0AxmrYCmI53k7rHGbqZH3fY9br7A&adurl=&q="
                                        },
                                        {
                                            "title": "Ofertas Relâmpago",
                                            "url": "https://www.mercadolivre.com.br/ofertas?promotion_type=LIGHTNING_DEAL#origin=scut&filter_applied=promotion_type&filter_position=2&is_recommended_domain=false"
                                        },
                                        {
                                            "title": "Aproveite o Menor Preço",
                                            "url": "/aclk?sa=L&ai=DChsSEwjlh4LK9rySAxW7a0gAHeyQMXcYACICCAEQEBoCY2U&co=1&ase=2&gclid=EAIaIQobChMI5YeCyva8kgMVu2tIAB3skDF3EAAYAiAFEgLsiPD_BwE&category=acrcp_v1_32&sig=AOD64_3SEnUNNA8Ax1H0AFlUkqfSdXuuqw&adurl=&q="
                                        },
                                        {
                                            "title": "Chega Amanhã*",
                                            "url": "https://www.mercadolivre.com.br/natal"
                                        }
                                    ]
                                },
                                "title": "Laptop no Mercado Livre | Entrega em Até 48h*",
                                "url": "https://lista.mercadolivre.com.br/laptop",
                                "url_shown": "https://www.mercadolivre.com.br"
                            },
                            {
                                "data_pcu": [
                                    "https://www.magazineluiza.com.br/",
                                    "https://m.magazineluiza.com.br/"
                                ],
                                "data_rw": "https://www.google.com/aclk?sa=L&ai=DChsSEwjlh4LK9rySAxW7a0gAHeyQMXcYACICCAEQARoCY2U&co=1&ase=2&gclid=EAIaIQobChMI5YeCyva8kgMVu2tIAB3skDF3EAAYAyAAEgJZKvD_BwE&category=acrcp_v1_32&sig=AOD64_2lC9BnJxpcuYa0pct3H2TZjVeLmw&q&nis=4&adurl",
                                "desc": "Magalu. Descontos Incriveis. compre Agora em Até 10x S/ Juros. Melhores Ofertas e Frete Grátis...",
                                "pos": 3,
                                "pos_overall": 3,
                                "title": "Magazine Luiza | As Melhores Ofertas | Entrega Rápida e Variedade",
                                "url": "https://www.magazineluiza.com.br/",
                                "url_shown": "https://www.magazineluiza.com.br"
                            },
                            {
                                "data_pcu": [
                                    "https://www.br.vaio.com/"
                                ],
                                "data_rw": "https://www.google.com/aclk?sa=L&ai=DChsSEwjlh4LK9rySAxW7a0gAHeyQMXcYACICCAEQABoCY2U&co=1&ase=2&gclid=EAIaIQobChMI5YeCyva8kgMVu2tIAB3skDF3EAAYBCAAEgJYVPD_BwE&category=acrcp_v1_32&sig=AOD64_3faIx_x7P5dmT-6SeA-LQQxqjAyA&q&nis=4&adurl",
                                "desc": "Aproveite a oferta e compre seu notebook. Notebook de alta performance e robustez. Compre Já.",
                                "pos": 4,
                                "pos_overall": 4,
                                "title": "Oferta Relâmpago - Oferta por tempo limitado",
                                "url": "https://www.br.vaio.com/notebook-vaio-fe16-amd-ryzen-7-5825u-linux-32gb-ram-512gb-ssd-16-ips-wuxga-antirreflexo-cinza-grafite-3344212/p",
                                "url_shown": "https://br.vaio.com › vaio › ryzen732"
                            },
                            {
                                "data_pcu": [
                                    "https://www.dell.com/",
                                    "https://ad.doubleclick.net/"
                                ],
                                "data_rw": "https://www.google.com/aclk?sa=L&ai=DChsSEwjlh4LK9rySAxW7a0gAHeyQMXcYACICCAIQABoCY2U&co=1&ase=2&gclid=EAIaIQobChMI5YeCyva8kgMVu2tIAB3skDF3EAMYASAAEgLYpvD_BwE&category=acrcp_v1_37&sig=AOD64_1-mqs_TTqKKA3XnfVgWEHk7b6C0g&q&nis=4&adurl",
                                "desc": "Notebook Dell Com Processadores Intel® Core™ Ultra. Aproveite as promoções em 12x s/ Juros. O Windows está mais...",
                                "pos": 5,
                                "pos_overall": 19,
                                "sitelinks": {
                                    "inline": [
                                        {
                                            "title": "Laptop 14' para trabalho",
                                            "url": "https://www.dell.com/pt-br/search/notebook%2014"
                                        },
                                        {
                                            "title": "Ofertas em Notebooks Dell",
                                            "url": "https://www.dell.com/pt-br/shop/deals/promocao-notebook"
                                        },
                                        {
                                            "title": "Ofertas no Site Oficial Dell",
                                            "url": "/aclk?sa=L&ai=DChsSEwjlh4LK9rySAxW7a0gAHeyQMXcYACICCAIQBRoCY2U&co=1&ase=2&gclid=EAIaIQobChMI5YeCyva8kgMVu2tIAB3skDF3EAMYASAFEgIaJfD_BwE&category=acrcp_v1_37&sig=AOD64_3_LvCBZJtENosvoKmGFiYhg_heyg&adurl=&q="
                                        },
                                        {
                                            "title": "Linha Dell Pro",
                                            "url": "https://www.dell.com/pt-br/search/dell%20pro"
                                        }
                                    ]
                                },
                                "title": "Loja Oficial Dell Brasil | Oferta Exclusiva Notebook Dell",
                                "url": "https://www.dell.com/pt-br/shop/deals/promocao-notebook",
                                "url_shown": "https://www.dell.com"
                            }
                        ],
                        "popular_products": [
                            {
                                "items": [
                                    {
                                        "currency": "USD",
                                        "description": "Amazon.com.br - Retail e mais",
                                        "image_data": "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",
                                        "pos": 1,
                                        "previous_price": "R$ 157,50/mês x 12",
                                        "price": "R$ 1.652,13 agora",
                                        "rating": "4,1",
                                        "rating_count": 727,
                                        "seller": "Amazon.com.br - Retail",
                                        "title": "Notebook Asus Vivobook Go 15 Intel Celeron Dual Core N4500 4GB"
                                    }
                                ],
                                "pos_overall": 6
                            }
                        ],
                        "search_information": {
                            "geo_location": "38305, Ituiutaba - MG",
                            "no_results_for_original_query_found": false,
                            "query": "laptop",
                            "showing_results_for": "laptop",
                            "time_taken_displayed": null,
                            "total_results_count": 2180000000
                        }
                    },
                    "url": "https://www.google.com/search?q=laptop&sei=z7SBaYmJKrWB5OUP6IaCkQs"
                },
                "errors": [],
                "status_code": 12000,
                "task_id": "7424371505015820289"
            },
            "headers": {},
            "status_code": 200,
            "query": "laptop",
            "task_id": "7424371505015820289",
            "created_at": "2026-02-03 08:41:44",
            "updated_at": "2026-02-03 08:42:04"
        }
    ]
  }
  ```
</CodeGroup>

***

<Columns cols={2}>
  <Card title="支持" href="https://direct.lc.chat/12092754" cta="让我们聊聊！">
    需要帮助或只是想打个招呼？我们的支持团队全天候为您服务。 \
    您也可以随时通过电子邮件 [support@decodo.com](mailto:support@decodo.com) 联系我们。
  </Card>

  <Card title="反馈" href="mailto:feedback@decodo.com" cta="分享反馈">
    找不到您要找的内容？请求一篇文章！ \
    有反馈意见？分享您对我们如何改进的想法。
  </Card>
</Columns>
