> ## 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.

# Postman

> Postman 网页抓取 API 集成指南

## 入门

<Steps>
  <Step title="下载">
    您可以在[**这里**](https://www.postman.com/downloads/)下载 **Postman** 应用程序，或尝试使用网页版。您需要一个账户才能使用它。
  </Step>

  <Step title="身份验证">
    确保您已准备好网页抓取 API 凭据和 **Basic 身份验证令牌**。
  </Step>
</Steps>

## 设置

<Steps>
  <Step>
    打开 **Postman** 应用程序。
  </Step>

  <Step>
    在左上角，点击 `+` 符号并选择 `HTTP` 选项。或者，您可以点击当前请求旁边的 `+` 符号。

    <img src="https://mintcdn.com/decodo/7ZKpc3GV1DKO_XQr/images/Postman---HTML-option.png?fit=max&auto=format&n=7ZKpc3GV1DKO_XQr&q=85&s=fa2a5fb2ec6e05c9b54d92a816cbf342" alt="Postman HTML Option" width="3448" height="2068" data-path="images/Postman---HTML-option.png" />
  </Step>

  <Step>
    将请求类型更改为 **Post** 并输入所需的 URL。

    <img src="https://mintcdn.com/decodo/7ZKpc3GV1DKO_XQr/images/Postman---Post-request.png?fit=max&auto=format&n=7ZKpc3GV1DKO_XQr&q=85&s=63c8d3d35c9a96c439947ab0d096a254" alt="Postman Post Request" width="3448" height="2068" data-path="images/Postman---Post-request.png" />

    <Note>
      对于实时请求，使用 `https://scraper-api.decodo.com/v2/scrape` URL。\
      对于异步请求，使用 `https://scraper-api.decodo.com/v3/task` URL。
    </Note>
  </Step>

  <Step>
    在 **Authorization** 选项卡中，选择 **Bearer token** 并输入您的网页抓取 API **Basic 身份验证令牌**。

    <img src="https://mintcdn.com/decodo/7ZKpc3GV1DKO_XQr/images/Postman---Authentication.png?fit=max&auto=format&n=7ZKpc3GV1DKO_XQr&q=85&s=adafdc8a34b6eb62b7c5fc9a759ce2f7" alt="Postman Authentication" width="3448" height="2068" data-path="images/Postman---Authentication.png" />
  </Step>

  <Step>
    在 **Body** 选项卡中，确保选择了 **raw** 和 **JSON**。输入相关参数。

    <img src="https://mintcdn.com/decodo/7ZKpc3GV1DKO_XQr/images/Postman---Body.png?fit=max&auto=format&n=7ZKpc3GV1DKO_XQr&q=85&s=2855ef0bf775f078f90e388725b2c724" alt="Postman Body" width="3448" height="2068" data-path="images/Postman---Body.png" />

    <Note>
      您可以在[这里](https://help.decodo.com/docs/web-scraping-api-parameters)查看可以使用的通用参数，或在[这里](https://help.decodo.com/docs/web-scraping-api-targets)查看模板参数。
    </Note>
  </Step>

  <Step>
    点击 **Send** 并等待结果！

    <img src="https://mintcdn.com/decodo/7ZKpc3GV1DKO_XQr/images/Postman---Send-request.png?fit=max&auto=format&n=7ZKpc3GV1DKO_XQr&q=85&s=2f2a7ed268e3c0283fd530d960662150" alt="Postman Send Request" width="3448" height="2068" data-path="images/Postman---Send-request.png" />
  </Step>
</Steps>

## 示例

您可以在这里**复制**包含我们所有当前模板的 **Postman** 集合：

<CodeGroup>
  ```json JSON expandable wrap theme={null}
  {
  	"info": {
  		"_postman_id": "b5d41590-3f45-465d-bb5a-e29fbd37a38e",
  		"name": "Web Scraping APIs",
  		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
  		"_exporter_id": "51194578",
  		"_collection_link": "https://barbora-vasiliauskaite-2437726.postman.co/workspace/Web-Scraping-API~43ab603c-dafc-4ae4-9fb4-26f7834345e4/collection/51194578-b5d41590-3f45-465d-bb5a-e29fbd37a38e?action=share&source=collection_link&creator=51194578"
  	},
  	"item": [
  		{
  			"name": "Web Scraping API templates",
  			"item": [
  				{
  					"name": "Universal",
  					"item": [
  						{
  							"name": "Universal: Real-time",
  							"request": {
  								"auth": {
  									"type": "bearer",
  									"bearer": [
  										{
  											"key": "token",
  											"value": "VTAwMDAzNzE3ODk6UFdfMTI4NjllYWI5NmNiNTY5NjQ5Y2YxNjhiNzcwMzA1ZTYx",
  											"type": "string"
  										}
  									]
  								},
  								"method": "POST",
  								"header": [
  									{
  										"key": "Content-Type",
  										"value": "application/json"
  									}
  								],
  								"body": {
  									"mode": "raw",
  									"raw": "{\n\"url\": \"https://ip.decodo.com\",\n\"headless\": \"html\",\n\"geo\": \"United Kingdom\",\n\"locale\": \"en-gb\",\n\"device_type\": \"desktop\"\n}"
  								},
  								"url": {
  									"raw": "https://scraper-api.decodo.com/v2/scrape",
  									"protocol": "https",
  									"host": [
  										"scraper-api",
  										"decodo",
  										"com"
  									],
  									"path": [
  										"v2",
  										"scrape"
  									]
  								}
  							},
  							"response": []
  						},
  						{
  							"name": "Universal: Async",
  							"request": {
  								"method": "POST",
  								"header": [
  									{
  										"key": "Content-Type",
  										"value": "application/json"
  									}
  								],
  								"body": {
  									"mode": "raw",
  									"raw": "{\n\"url\": \"https://ip.decodo.com\",\n\"proxy_pool\": \"premium\",\n\"headless\": \"html\",\n\"geo\": \"United Kingdom\"\n}"
  								},
  								"url": {
  									"raw": "https://scraper-api.decodo.com/v3/task",
  									"protocol": "https",
  									"host": [
  										"scraper-api",
  										"decodo",
  										"com"
  									],
  									"path": [
  										"v3",
  										"task"
  									]
  								}
  							},
  							"response": []
  						},
  						{
  							"name": "Async result",
  							"protocolProfileBehavior": {
  								"disableBodyPruning": true
  							},
  							"request": {
  								"method": "GET",
  								"header": [
  									{
  										"key": "Content-Type",
  										"value": "application/json"
  									}
  								],
  								"body": {
  									"mode": "raw",
  									"raw": ""
  								},
  								"url": {
  									"raw": "https://scraper-api.decodo.com/v3/task/{task_ID}/results",
  									"protocol": "https",
  									"host": [
  										"scraper-api",
  										"decodo",
  										"com"
  									],
  									"path": [
  										"v3",
  										"task",
  										"{task_ID}",
  										"results"
  									]
  								}
  							},
  							"response": []
  						}
  					]
  				},
  				{
  					"name": "Amazon",
  					"item": [
  						{
  							"name": "Amazon Product",
  							"item": [
  								{
  									"name": "Amazon Product: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_product\",\n\"query\": \"B09H74FXNW\",\n\"headless\": \"html\",\n\"domain\": \"nl\",\n\"device_type\": \"desktop_chrome\",\n\"parse\": true,\n\"autoselect_variant\": true,\n\"geo\": \"NL\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Amazon Product: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_product\",\n\"query\": \"B09H74FXNW\",\n\"headless\": \"html\",\n\"domain\": \"co.uk\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Amazon Pricing",
  							"item": [
  								{
  									"name": "Amazon Pricing: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_pricing\",\n\"query\": \"B0DRBTP3DY\",\n\"domain\": \"co.uk\",\n\"device_type\": \"desktop_chrome\",\n\"page_from\": \"1\",\n\"parse\": true,\n\"geo\": \"GB\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Amazon Pricing: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n \"target\": \"amazon_pricing\", \n \"domain\": \"com\", \n \"query\": \"B0933BVK6T\",\n \"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Amazon Search",
  							"item": [
  								{
  									"name": "Amazon Search: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_search\",\n\"query\": \"laptop\",\n\"headless\": \"html\",\n\"domain\": \"com\",\n\"device_type\": \"desktop_firefox\",\n\"page_from\": \"1\",\n\"parse\": true,\n\"geo\": \"99950\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Amazon Search: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_search\",\n\"query\": \"headphones\",\n\"headless\": \"html\",\n\"page_from\": \"1\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Amazon Sellers",
  							"item": [
  								{
  									"name": "Amazon Sellers: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_sellers\",\n\"query\": \"A1R0Z7FJGTKESH\",\n\"headless\": \"html\",\n\"locale\": \"sv_SE\",\n\"domain\": \"se\",\n\"device_type\": \"desktop\",\n\"geo\": \"SE\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Amazon Sellers: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_sellers\",\n\"query\": \"A1R0Z7FJGTKESH\",\n\"headless\": \"html\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Amazon Bestsellers",
  							"item": [
  								{
  									"name": "Amazon Best Sellers: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_bestsellers\",\n\"query\": \"mobile-apps\",\n\"headless\": \"html\",\n\"domain\": \"de\",\n\"device_type\": \"desktop\",\n\"geo\": \"NL\",\n\"page_from\": \"1\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Amazon Best Sellers: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon_bestsellers\",\n\"query\": \"mobile-apps\",\n\"headless\": \"html\",\n\"page_from\": \"1\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Amazon URLs",
  							"item": [
  								{
  									"name": "Amazon URLs: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon\",\n\"url\": \"https://www.amazon.com/dp/B09H74FXNW\",\n\"headless\": \"html\",\n\"device_type\": \"desktop\",\n\"parse\": true,\n\"geo\": \"NL\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Amazon URLs: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"amazon\",\n\"url\": \"https://www.amazon.com/dp/B09H74FXNW\",\n\"headless\": \"html\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						}
  					]
  				},
  				{
  					"name": "Google",
  					"item": [
  						{
  							"name": "Google URLs",
  							"item": [
  								{
  									"name": "Google URLs: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"google\",\n\"url\": \"https://www.google.com/search?q=pizza&sca_esv=0941c5488d98d8af&sxsrf=ANbL-n6rK9pYsGX8zsIX01LwBz-mTk33vQ%3A1769868552849&ei=CA1-ab_DM8ughbIPrO3o0Qs&ved=0ahUKEwi_55CT-rWSAxVLUEEAHaw2OroQ4dUDCBE&uact=5&oq=pizza&gs_lp=Egxnd3Mtd2l6LXNlcnAiBXBpenphMhYQLhiABBixAxjRAxhDGMcBGMkDGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyERAuGIAEGLEDGNEDGIMBGMcBMggQABiABBixAzIIEAAYgAQYsQMyDhAuGIAEGLEDGNEDGMcBMgsQLhiABBixAxiDATIKEAAYgAQYQxiKBTIlEC4YgAQYsQMY0QMYQxjHARjJAxiKBRiXBRjcBBjeBBjgBNgBAUiTC1C6AliIB3ABeAGQAQCYAYEBoAG_A6oBAzAuNLgBA8gBAPgBAZgCBaAC8QPCAgoQABiwAxjWBBhHwgINEAAYgAQYsAMYQxiKBcICGRAuGIAEGLADGNEDGEMYxwEYyAMYigXYAQHCAhMQLhiABBiwAxhDGMgDGIoF2AEBwgILEAAYgAQYsQMYkgPCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwGYAwCIBgGQBhS6BgYIARABGAiSBwMxLjSgB7gusgcDMC40uAfeA8IHBTItMy4yyAcngAgA&sclient=gws-wiz-serp\",\n\"headless\": \"html\",\n\"locale\": \"en-al\",\n\"geo\": \"Albania\",\n\"device_type\": \"desktop\",\n\"parse\": true,\n\"page_count\": 1\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Google URLs: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"google\",\n\"url\": \"https://www.google.com/search?q=pizza&sca_esv=0941c5488d98d8af&sxsrf=ANbL-n6rK9pYsGX8zsIX01LwBz-mTk33vQ%3A1769868552849&ei=CA1-ab_DM8ughbIPrO3o0Qs&ved=0ahUKEwi_55CT-rWSAxVLUEEAHaw2OroQ4dUDCBE&uact=5&oq=pizza&gs_lp=Egxnd3Mtd2l6LXNlcnAiBXBpenphMhYQLhiABBixAxjRAxhDGMcBGMkDGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyERAuGIAEGLEDGNEDGIMBGMcBMggQABiABBixAzIIEAAYgAQYsQMyDhAuGIAEGLEDGNEDGMcBMgsQLhiABBixAxiDATIKEAAYgAQYQxiKBTIlEC4YgAQYsQMY0QMYQxjHARjJAxiKBRiXBRjcBBjeBBjgBNgBAUiTC1C6AliIB3ABeAGQAQCYAYEBoAG_A6oBAzAuNLgBA8gBAPgBAZgCBaAC8QPCAgoQABiwAxjWBBhHwgINEAAYgAQYsAMYQxiKBcICGRAuGIAEGLADGNEDGEMYxwEYyAMYigXYAQHCAhMQLhiABBiwAxhDGMgDGIoF2AEBwgILEAAYgAQYsQMYkgPCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwGYAwCIBgGQBhS6BgYIARABGAiSBwMxLjSgB7gusgcDMC40uAfeA8IHBTItMy4yyAcngAgA&sclient=gws-wiz-serp\",\n\"headless\": \"html\",\n\"parse\": true,\n\"page_count\": 1\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							]
  						},
  						{
  							"name": "Google Search with AI overview",
  							"item": [
  								{
  									"name": "Google Search: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"google_search\",\n\"query\": \"pizza\",\n\"headless\": \"html\",\n\"locale\": \"fr-fr\",\n\"geo\": \"France\",\n\"device_type\": \"desktop\",\n\"page_from\": \"1\",\n\"google_results_language\": \"fr\",\n\"parse\": true,\n\"page_count\": 2\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Google Search: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"google_search\",\n\"query\": \"pizza\",\n\"headless\": \"html\",\n\"page_from\": \"1\",\n\"parse\": true,\n\"page_count\": 1\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							]
  						},
  						{
  							"name": "Google Travel Hotels",
  							"item": [
  								{
  									"name": "Google Travel Hotels: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"google_travel_hotels\",\n\"query\": \"trivago\",\n\"headless\": \"html\",\n\"device_type\": \"desktop\",\n\"page_from\": \"1\",\n\"date_range\": \"2026-03-12,2026-03-20\",\n\"stars\": [3,4,5],\n\"adults\": 2,\n\"children\": 1,\n\"markdown\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Google Travel Hotels: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"google_travel_hotels\",\n\"query\": \"trivago\",\n\"headless\": \"html\",\n\"device_type\": \"desktop\",\n\"page_from\": \"1\",\n\"stars\": [3,4,5],\n\"adults\": 2\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							]
  						},
  						{
  							"name": "Google Ads with AI Overview",
  							"item": [
  								{
  									"name": "Google Ads: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\t\"target\": \"google_ads\",\n    \"query\": \"pizza\",\n    \"headless\": \"html\",\n    \"locale\": \"en-au\",\n    \"geo\": \"Australia\",\n    \"device_type\": \"desktop\",\n    \"page_from\": \"1\",\n    \"google_results_language\": \"en\",\n    \"parse\": true,\n    \"page_count\": 2\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Google Ads: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\t\"target\": \"google_ads\",\n    \"query\": \"pizza\",\n    \"headless\": \"html\",\n    \"page_from\": \"1\",\n    \"google_results_language\": \"en\",\n    \"parse\": true,\n    \"page_count\": 1\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Google Lens",
  							"item": [
  								{
  									"name": "Google Lens: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\t\"target\": \"google_lens\",\n    \"query\": \"https://www.humanesociety.org/sites/default/files/2021-06/hamster-540188.jpg\",\n    \"headless\": \"html\",\n    \"parse\": true,\n    \"device_type\": \"desktop_chrome\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Google Lens: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\t\"target\": \"google_lens\",\n    \"query\": \"https://www.humanesociety.org/sites/default/files/2021-06/hamster-540188.jpg\",\n    \"headless\": \"html\",\n    \"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						}
  					]
  				},
  				{
  					"name": "Youtube",
  					"item": [
  						{
  							"name": "Youtube Metadata",
  							"item": [
  								{
  									"name": "Youtube Metadata: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"youtube_metadata\",\n\"query\": \"dFu9aKJoqGg\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Youtube Metadata: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"youtube_metadata\",\n\"query\": \"dFu9aKJoqGg\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Youtube Search",
  							"item": [
  								{
  									"name": "Youtube Search: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"youtube_search\",\n\"query\": \"How to make a sandwich\",\n\"upload_date\": \"this_year\",\n\"type\": \"video\",\n\"video_sort_by\": \"relevance\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Youtube Search: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"youtube_search\",\n\"query\": \"How to make a sandwich\",\n\"type\": \"video\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Youtube Subtitles",
  							"item": [
  								{
  									"name": "Youtube Subtitles: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"youtube_subtitles\",\n\"query\": \"L8zSWbQN-v8\",\n\"language_code\": \"en\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Youtube Subtitles: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"youtube_subtitles\",\n\"query\": \"L8zSWbQN-v8\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Youtube Channel",
  							"item": [
  								{
  									"name": "Youtube Channel: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"youtube_channel\",\n\"query\": \"@decodo_official\",\n\"parse\": true,\n\"limit\": 20\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Youtube Channel: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"youtube_channel\",\n\"query\": \"@decodo_official\",\n\"parse\": true,\n\"limit\": 10\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						}
  					]
  				},
  				{
  					"name": "Walmart",
  					"item": [
  						{
  							"name": "Walmart Product",
  							"item": [
  								{
  									"name": "Walmart Product: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"walmart_product\",\n\"product_id\": \"2322011828\",\n\"headless\": \"html\",\n\"geo\": \"United States\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Walmart Product: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"walmart_product\",\n\"product_id\": \"10899001\",\n\"headless\": \"html\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							]
  						},
  						{
  							"name": "Walmart URLs",
  							"item": [
  								{
  									"name": "Walmart URLs: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"url\": \"https://www.walmart.com/ip/AT-T-iPhone-16e-128GB-Black-Apple-Intelligence/15296401808?classType=VARIANT&from=/search\",\n\"headless\": \"html\",\n\"locale\": \"en-us\",\n\"geo\": \"United States\",\n\"device_type\": \"desktop\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Walmart URLs: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"url\": \"https://www.walmart.com/ip/AT-T-iPhone-16e-128GB-Black-Apple-Intelligence/15296401808?classType=VARIANT&from=/search\",\n\"headless\": \"html\",\n\"locale\": \"en-us\",\n\"geo\": \"United States\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							]
  						},
  						{
  							"name": "Walmart Search",
  							"item": [
  								{
  									"name": "Walmart Search: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"walmart_search\",\n\"query\": \"tent\",\n\"headless\": \"html\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Walmart Search: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"walmart_search\",\n\"query\": \"tent\",\n\"headless\": \"html\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							]
  						}
  					]
  				},
  				{
  					"name": "Target",
  					"item": [
  						{
  							"name": "Target Product",
  							"item": [
  								{
  									"name": "Target Product: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"target_product\",\n\"product_id\": \"92186007\",\n\"headless\": \"html\",\n\"parse\": true,\n\"device_type\": \"desktop\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Target Product: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"target_product\",\n\"product_id\": \"92186007\",\n\"headless\": \"html\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Target URLs",
  							"item": [
  								{
  									"name": "Target URLs: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"target\",\n\"url\": \"https://www.target.com/finds/ideas\",\n\"headless\": \"html\",\n\"device_type\": \"mobile\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Target URLs: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"target\",\n\"url\": \"https://www.target.com/finds/ideas\",\n\"headless\": \"html\",\n\"device_type\": \"mobile\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Target Search",
  							"item": [
  								{
  									"name": "Target Search: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"target_search\",\n\"query\": \"laptop\",\n\"headless\": \"html\",\n\"parse\": true,\n\"device_type\": \"desktop_chrome\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Target Search: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"target_search\",\n\"query\": \"laptop\",\n\"headless\": \"html\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						}
  					]
  				},
  				{
  					"name": "TikTok",
  					"item": [
  						{
  							"name": "Tiktok Post",
  							"item": [
  								{
  									"name": "Tiktok Post: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"tiktok_post\",\n\"url\": \"https://www.tiktok.com/@nba/video/7255379108241198378\",\n\"headless\": \"html\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Tiktok Post: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"tiktok_post\",\n\"url\": \"https://www.tiktok.com/@nba/video/7255379108241198378\",\n\"headless\": \"html\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Tiktok Shop Search",
  							"item": [
  								{
  									"name": "Tiktok Shop Search: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"tiktok_shop_search\",\n\"query\": \"necklace\",\n\"headless\": \"html\",\n\"device_type\": \"mobile_android\",\n\"country\": \"gb\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Tiktok Shop Search: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"tiktok_shop_search\",\n\"query\": \"necklace\",\n\"headless\": \"html\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Tiktok Shop Product",
  							"item": [
  								{
  									"name": "Tiktok Shop Product: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"tiktok_shop_product\",\n\"product_id\": \"1729584514730400022\",\n\"headless\": \"html\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Tiktok Shop Product: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"tiktok_shop_product\",\n\"product_id\": \"1731541214379741272\",\n\"headless\": \"html\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Tiktok Shop URL",
  							"item": [
  								{
  									"name": "Tiktok Shop URLs: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"tiktok\",\n\"url\": \"https://www.tiktok.com/shop/s?q=HEADPHONES\",\n\"headless\": \"html\",\n\"user_agent_type\": \"mobile_android\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Tiktok Shop URLs: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"tiktok\",\n\"url\": \"https://www.tiktok.com/shop/s?q=HEADPHONES\",\n\"headless\": \"html\",\n\"user_agent_type\": \"mobile\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						}
  					]
  				},
  				{
  					"name": "Reddit",
  					"item": [
  						{
  							"name": "Reddit Post",
  							"item": [
  								{
  									"name": "Reddit Post: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"reddit_post\",\n\"url\": \"https://www.reddit.com/r/nba/comments/17jrqc5/serious_next_day_thread_postgame_discussion/\",\n\"locale\": \"en-us\",\n\"geo\": \"United States\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Reddit Post: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"reddit_post\",\n\"url\": \"https://www.reddit.com/r/nba/comments/17jrqc5/serious_next_day_thread_postgame_discussion/\",\n\"locale\": \"en-us\",\n\"geo\": \"United States\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Reddit Subreddit",
  							"item": [
  								{
  									"name": "Reddit Subreddit: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"reddit_subreddit\",\n\"url\": \"https://www.reddit.com/r/AITAH/\",\n\"locale\": \"en-us\",\n\"geo\": \"United States\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Reddit Subreddit: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"reddit_subreddit\",\n\"url\": \"https://www.reddit.com/r/AITAH/\",\n\"locale\": \"en-us\",\n\"geo\": \"United States\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Reddit User",
  							"item": [
  								{
  									"name": "Reddit User: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"reddit_user\",\n\"url\": \"https://www.reddit.com/user/IWasRightOnce/\",\n\"locale\": \"en-us\",\n\"geo\": \"United States\",\n\"sort\": \"new\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Reddit User: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"reddit_user\",\n\"url\": \"https://www.reddit.com/user/IWasRightOnce/\",\n\"locale\": \"en-us\",\n\"geo\": \"United States\",\n\"sort\": \"new\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						}
  					]
  				},
  				{
  					"name": "Bing",
  					"item": [
  						{
  							"name": "Bing Search",
  							"item": [
  								{
  									"name": "Bing Search: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"bing_search\",\n\"query\": \"laptop\",\n\"headless\": \"html\",\n\"locale\": \"en-gb\",\n\"geo\": \"United Kingdom\",\n\"domain\": \"co.uk\",\n\"page_from\": \"1\",\n\"limit\": 10,\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Bing Search: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"bing_search\",\n\"query\": \"cat\",\n\"headless\": \"html\",\n\"page_from\": \"1\",\n\"limit\": 10,\n\"session_id\": \"d1\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Bing URLs",
  							"item": [
  								{
  									"name": "Bing URLs: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"bing\",\n\"url\": \"https://www.bing.com/search?q=cat\",\n\"headless\": \"html\",\n\"locale\": \"fr-fr\",\n\"geo\": \"France\",\n\"page_from\": \"1\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Bing URLs: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"bing\",\n\"url\": \"https://www.bing.com/search?q=cat\",\n\"headless\": \"html\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						}
  					]
  				},
  				{
  					"name": "AI Tools",
  					"item": [
  						{
  							"name": "Google AI Mode",
  							"item": [
  								{
  									"name": "Google AI Mode: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"google_ai_mode\",\n\"query\": \"What are the top three cat breeds?\",\n\"geo\": \"United Kingdom\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Google AI Mode: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"google_ai_mode\",\n\"query\": \"What are the top three dog breeds?\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "ChatGPT",
  							"item": [
  								{
  									"name": "ChatGPT: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"chatgpt\",\n\"prompt\": \"What are the top three cat breeds?\",\n\"parse\": true,\n\"geo\": \"Canada\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "ChatGPT: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"chatgpt\",\n\"prompt\": \"What are the top three dog breeds?\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						},
  						{
  							"name": "Perplexity",
  							"item": [
  								{
  									"name": "Perplexity: Real-time",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"perplexity\",\n\"prompt\": \"What are the top three cat breeds?\",\n\"parse\": true,\n\"geo\": \"United Kingdom\"\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v2/scrape",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v2",
  												"scrape"
  											]
  										}
  									},
  									"response": []
  								},
  								{
  									"name": "Perplexity: Async",
  									"request": {
  										"method": "POST",
  										"header": [
  											{
  												"key": "Content-Type",
  												"value": "application/json"
  											}
  										],
  										"body": {
  											"mode": "raw",
  											"raw": "{\n\"target\": \"perplexity\",\n\"prompt\": \"What are the top three dog breeds?\",\n\"parse\": true\n}"
  										},
  										"url": {
  											"raw": "https://scraper-api.decodo.com/v3/task",
  											"protocol": "https",
  											"host": [
  												"scraper-api",
  												"decodo",
  												"com"
  											],
  											"path": [
  												"v3",
  												"task"
  											]
  										}
  									},
  									"response": []
  								}
  							],
  							"event": [
  								{
  									"listen": "prerequest",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								},
  								{
  									"listen": "test",
  									"script": {
  										"type": "text/javascript",
  										"exec": [
  											""
  										]
  									}
  								}
  							]
  						}
  					]
  				}
  			],
  			"auth": {
  				"type": "bearer",
  				"bearer": [
  					{
  						"key": "token",
  						"value": "VTAwMDAzNzE3ODk6UFdfMTI4NjllYWI5NmNiNTY5NjQ5Y2YxNjhiNzcwMzA1ZTYx",
  						"type": "string"
  					}
  				]
  			},
  			"event": [
  				{
  					"listen": "prerequest",
  					"script": {
  						"type": "text/javascript",
  						"packages": {},
  						"requests": {},
  						"exec": [
  							""
  						]
  					}
  				},
  				{
  					"listen": "test",
  					"script": {
  						"type": "text/javascript",
  						"packages": {},
  						"requests": {},
  						"exec": [
  							""
  						]
  					}
  				}
  			]
  		}
  	],
  	"auth": {
  		"type": "bearer"
  	},
  	"event": [
  		{
  			"listen": "prerequest",
  			"script": {
  				"type": "text/javascript",
  				"packages": {},
  				"requests": {},
  				"exec": [
  					""
  				]
  			}
  		},
  		{
  			"listen": "test",
  			"script": {
  				"type": "text/javascript",
  				"packages": {},
  				"requests": {},
  				"exec": [
  					""
  				]
  			}
  		}
  	]
  }
  ```
</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>
