Bright Data와 Google Gemini를 사용하여 아마존 전자 상품 베스트셀러 정보 추출
중급
이것은Sales, AI, Marketing분야의자동화 워크플로우로, 8개의 노드를 포함합니다.주로 Set, HttpRequest, ManualTrigger, LmChatGoogleGemini, InformationExtractor 등의 노드를 사용하며인공지능 기술을 결합하여 스마트 자동화를 구현합니다. Bright Data와 Google Gemini를 사용하여 아마존 전자 상품 베스트셀러 정보를 추출합니다.
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
- •Google Gemini API Key
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "H95uJY2gjSOsxRps",
"meta": {
"instanceId": "885b4fb4a6a9c2cb5621429a7b972df0d05bb724c20ac7dac7171b62f1c7ef40",
"templateCredsSetupCompleted": true
},
"name": "Extract Amazon Best Seller Electronic Information with Bright Data and Google Gemini",
"tags": [
{
"id": "Kujft2FOjmOVQAmJ",
"name": "Engineering",
"createdAt": "2025-04-09T01:31:00.558Z",
"updatedAt": "2025-04-09T01:31:00.558Z"
},
{
"id": "ddPkw7Hg5dZhQu2w",
"name": "AI",
"createdAt": "2025-04-13T05:38:08.053Z",
"updatedAt": "2025-04-13T05:38:08.053Z"
}
],
"nodes": [
{
"id": "328c84bb-eef0-41cc-a392-8e58e3599f9b",
"name": "'워크플로 테스트' 클릭 시",
"type": "n8n-nodes-base.manualTrigger",
"position": [
340,
-440
],
"parameters": {},
"typeVersion": 1
},
{
"id": "b0e35bc1-473f-44b7-8959-9683adabb8b7",
"name": "Sticky Note1",
"type": "n8n-nodes-base.stickyNote",
"position": [
820,
-640
],
"parameters": {
"width": 420,
"height": 140,
"content": "## LLM Usages\n\nGoogle Gemini Flash Exp model is being used.\n\nInformation Extraction for building the structured data"
},
"typeVersion": 1
},
{
"id": "a0f32fbd-a7d0-4aeb-b930-59480066e87b",
"name": "Google Gemini Chat Model",
"type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
"position": [
1088,
-220
],
"parameters": {
"options": {},
"modelName": "models/gemini-2.0-flash-exp"
},
"credentials": {
"googlePalmApi": {
"id": "YeO7dHZnuGBVQKVZ",
"name": "Google Gemini(PaLM) Api account"
}
},
"typeVersion": 1
},
{
"id": "3e64fe4a-7746-4b56-b845-3359e38648d9",
"name": "HTTP Amazon 베스트셀러 상품 조회 요청",
"type": "n8n-nodes-base.httpRequest",
"position": [
780,
-440
],
"parameters": {
"url": "https://api.brightdata.com/request",
"method": "POST",
"options": {},
"sendBody": true,
"sendHeaders": true,
"authentication": "genericCredentialType",
"bodyParameters": {
"parameters": [
{
"name": "zone",
"value": "={{ $json.zone }}"
},
{
"name": "url",
"value": "={{ $json.url }}"
},
{
"name": "format",
"value": "raw"
}
]
},
"genericAuthType": "httpHeaderAuth",
"headerParameters": {
"parameters": [
{}
]
}
},
"credentials": {
"httpHeaderAuth": {
"id": "kdbqXuxIR8qIxF7y",
"name": "Header Auth account"
}
},
"typeVersion": 4.2
},
{
"id": "8e27bd37-b879-4fb2-bf80-1cd609170600",
"name": "Structured Data Extractor",
"type": "@n8n/n8n-nodes-langchain.informationExtractor",
"position": [
1000,
-440
],
"parameters": {
"text": "={{ $json.data }}",
"options": {
"systemPromptTemplate": "You are an expert extraction algorithm.\nOnly extract relevant information from the text.\nIf you do not know the value of an attribute asked to extract, you may omit the attribute's value."
},
"schemaType": "manual",
"inputSchema": "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"title\": \"Amazon Bestsellers - Smartphones & Basic Mobiles\",\n \"type\": \"object\",\n \"properties\": {\n \"category\": {\n \"type\": \"string\",\n \"example\": \"Smartphones & Basic Mobiles\"\n },\n \"description\": {\n \"type\": \"string\",\n \"example\": \"Our most popular products based on sales. Updated frequently.\"\n },\n \"page\": {\n \"type\": \"string\",\n \"example\": \"Page 1 of 2\"\n },\n \"bestsellers\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"rank\": {\n \"type\": \"integer\",\n \"example\": 1\n },\n \"title\": {\n \"type\": \"string\",\n \"example\": \"OnePlus Nord CE4 (Dark Chrome, 8GB RAM, 256GB Storage)\"\n },\n \"image\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"example\": \"https://images-eu.ssl-images-amazon.com/images/I/61g1pqSjAhL._AC_UL300_SR300,200_.jpg\"\n },\n \"rating\": {\n \"type\": \"object\",\n \"properties\": {\n \"stars\": {\n \"type\": \"number\",\n \"example\": 4.2\n },\n \"total_ratings\": {\n \"type\": \"integer\",\n \"example\": 8051\n }\n },\n \"required\": [\"stars\", \"total_ratings\"]\n },\n \"offer\": {\n \"type\": \"string\",\n \"example\": \"1 offer from ₹23,998.00\"\n },\n \"product_url\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"example\": \"https://www.amazon.in/Oneplus-Nord-Chrome-256GB-Storage/dp/B0CX5BZXLF/\"\n }\n },\n \"required\": [\"rank\", \"title\", \"image\", \"rating\", \"offer\", \"product_url\"]\n }\n }\n },\n \"required\": [\"category\", \"description\", \"page\", \"bestsellers\"]\n}\n"
},
"typeVersion": 1
},
{
"id": "584944a3-a5a8-456f-bd5a-57fc1fd5d69f",
"name": "Bright Data Zone을 포함한 Amazon URL 설정",
"type": "n8n-nodes-base.set",
"notes": "Set the URL which you are interested to scrap the data",
"position": [
560,
-440
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "1c132dd6-31e4-453b-a8cf-cad9845fe55b",
"name": "url",
"type": "string",
"value": "https://www.amazon.in/gp/bestsellers/electronics/1389432031?product=unlocker&method=api"
},
{
"id": "0fa387df-2511-4228-b6aa-237cceb3e9c7",
"name": "zone",
"type": "string",
"value": "web_unlocker1"
}
]
}
},
"notesInFlow": true,
"typeVersion": 3.4
},
{
"id": "bc2507a8-a9b6-4b47-9bce-2cef9a0d1e3e",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
340,
-720
],
"parameters": {
"width": 400,
"height": 220,
"content": "## Note\n\nDeals with the Amazon Best Seller Electronic data extraction using the Bright Data and LLM for Information Extraction.\n\n**Please make sure to update the \"Set Amazon URL with the Bright Data Zone\" and the Webhook Notification URL**"
},
"typeVersion": 1
},
{
"id": "36a14230-e791-4996-8457-311a496833cd",
"name": "Webhook Structured Data Extractor 알림",
"type": "n8n-nodes-base.httpRequest",
"position": [
1376,
-440
],
"parameters": {
"url": "https://webhook.site/bc804ce5-4a45-4177-a68a-99c80e5c86e6",
"options": {},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "summary",
"value": "={{ $json.output }}"
}
]
}
},
"typeVersion": 4.2
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "2e44bd30-9100-43a9-b177-b15867b8488b",
"connections": {
"a0f32fbd-a7d0-4aeb-b930-59480066e87b": {
"ai_languageModel": [
[
{
"node": "8e27bd37-b879-4fb2-bf80-1cd609170600",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"8e27bd37-b879-4fb2-bf80-1cd609170600": {
"main": [
[
{
"node": "36a14230-e791-4996-8457-311a496833cd",
"type": "main",
"index": 0
}
]
]
},
"328c84bb-eef0-41cc-a392-8e58e3599f9b": {
"main": [
[
{
"node": "584944a3-a5a8-456f-bd5a-57fc1fd5d69f",
"type": "main",
"index": 0
}
]
]
},
"584944a3-a5a8-456f-bd5a-57fc1fd5d69f": {
"main": [
[
{
"node": "3e64fe4a-7746-4b56-b845-3359e38648d9",
"type": "main",
"index": 0
}
]
]
},
"3e64fe4a-7746-4b56-b845-3359e38648d9": {
"main": [
[
{
"node": "8e27bd37-b879-4fb2-bf80-1cd609170600",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 영업, 인공지능, 마케팅
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Bright Data와 Google Gemini를 사용하여 LinkedIn에서 회사 이야기를 생성
Bright Data와 Google Gemini를 사용하여 LinkedIn에서 회사 이야기 생성
If
Set
Wait
+
If
Set
Wait
19 노드Ranjan Dailata
영업
Bright Data 스크래핑 및 Google Gemini를 사용한 Etsy 데이터 마이닝 자동화
Bright Data 스크래핑과 Google Gemini를 사용한 Etsy 데이터 마이닝 자동화
Set
Function
Split Out
+
Set
Function
Split Out
19 노드Ranjan Dailata
제품
Bright Data를 통해 브랜드 내용 추출, 요약 및 감정 분석
Bright Data와 Google Gemini를 사용하여 브랜드 내용을 추출하고 분석
Set
Function
Http Request
+
Set
Function
Http Request
23 노드Ranjan Dailata
인공지능
브라이트데이터를 통해 아마존 제품 할인 현황 추출, 요약 및 분석
Bright Data와 Google Gemini를 사용하여 아마존 할인 정보를 추출, 요약 및 분석합니다.
Set
Wait
Merge
+
Set
Wait
Merge
26 노드Ranjan Dailata
인공지능
브라이트데이터 MCP 서버와 구글 제미니를 사용하여 링크드인 웹 페이지 크롤링
Bright Data MCP 서버와 Google Gemini를 사용하여 LinkedIn 데이터를 추출 및 변환합니다.
Set
Code
Merge
+
Set
Code
Merge
20 노드Ranjan Dailata
인공지능
구글 트렌드 데이터 추출, 브라이트데이터와 구글 제미니를 사용하여 요약 생성
Bright Data와 구글 제미니를 사용한 구글 트렌드 데이터 추출 및 요약 생성
Set
Gmail
Function
+
Set
Gmail
Function
16 노드Ranjan Dailata
엔지니어링