Skip to content

Commit 250ffbc

Browse files
committed
docs: add Make apps documentation
add separate documents for ig,fb,amazon,tiktok & yt add screenshots reformat the docs to fit docs style adjust prose to fit the style guide remake make.com integration page into category
1 parent 8e88b4f commit 250ffbc

22 files changed

+1108
-9
lines changed
Lines changed: 242 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
1+
---
2+
title: Make - Amazon Actor integration
3+
description: Learn about Amazon scraper modules, extract product, search, or category data from Amazon.
4+
sidebar_label: Amazon
5+
sidebar_position: 4
6+
slug: /integrations/make/amazon
7+
---
8+
9+
## Apify Scraper for Amazon Data
10+
11+
The Amazon Scraper module from [Apify](https://apify.com) allows you to extract product, search, or category data from Amazon.
12+
13+
To use the module, you need an [Apify account](https://console.apify.com) and an [API token](https://docs.apify.com/platform/integrations/api#api-token), which you can find in the Apify Console under **Settings > Integrations**. After connecting, you can automate data extraction and incorporate the results into your workflows.
14+
15+
## Connect Apify Scraper for Amazon Data modules to Make
16+
17+
1. To get started, create an account at [Apify](https://console.apify.com/). You can sign up using your email, Gmail, or GitHub account.
18+
19+
![image.png](images/amazon/image.png)
20+
21+
1. To connect your Apify account with Make, you need to get the **API token** from your Apify account. Go to **[Settings > API & Integrations](https://console.apify.com/settings/integrations)** tab to find API tokens.
22+
23+
![Apify Console token for Make.png](images/amazon/Apify_Console_token_for_Make.png)
24+
25+
1. Find your token under **Personal API tokens**. You can also create a new API token with multiple customizable permissions by clicking on **+ Create a new token**.
26+
1. To establish a connection, **copy the API token** and go back to Make.
27+
28+
![Apify token on Make.png](images/amazon/Apify_token_on_Make.png)
29+
30+
1. On Make, click **Add** to open the **Create a connection** dialog of the chosen Apify Scraper module.
31+
1. In the **API token** field, paste the value copied in step 4, name your Connection, and click **Save**.
32+
33+
![image.png](images/amazon/image1.png)
34+
35+
Once connected, you can build workflows to automate Amazon data extraction and integrate results into your applications.
36+
37+
## Apify Scraper for Amazon Data module
38+
39+
After connecting the app, you can use the Search module as a native scraper to extract public Amazon data. Here’s what you get:
40+
41+
### Extract Amazon data
42+
43+
Get data via [Apify's Amazon Scraper](https://apify.com/junglee/free-amazon-product-scraper). Fill in the URLs of products, searches, or categories you want to gather information about.
44+
45+
For Amazon URLs, you can extract:
46+
47+
- _Product title_
48+
- _Amazon ASIN number_
49+
- _Brand name_
50+
- _Number of reviews_
51+
- _Image_
52+
- _Description_
53+
- _Price value and currency_
54+
55+
```json
56+
[
57+
{
58+
"title": "Logitech M185 Wireless Mouse, 2.4GHz with USB Mini Receiver, 12-Month Battery Life, 1000 DPI Optical Tracking, Ambidextrous PC/Mac/Laptop - Swift Grey",
59+
"asin": "B004YAVF8I",
60+
"brand": "Logitech",
61+
"stars": 4.5,
62+
"reviewsCount": 37418,
63+
"thumbnailImage": "https://m.media-amazon.com/images/I/5181UFuvoBL.__AC_SX300_SY300_QL70_FMwebp_.jpg",
64+
"breadCrumbs": "Electronics›Computers & Accessories›Computer Accessories & Peripherals›Keyboards, Mice & Accessories›Mice",
65+
"description": "Logitech Wireless Mouse M185. A simple, reliable mouse with plug-and-play wireless, a 1-year battery life and 3-year limited hardware warranty.(Battery life may vary based on user and computing conditions.) System Requirements: Windows Vista Windows 7 Windows 8 Windows 10|Mac OS X 10.5 or later|Chrome OS|Linux kernel 2.6+|USB port",
66+
"price": {
67+
"value": 13.97,
68+
"currency": "$"
69+
},
70+
"url": "https://www.amazon.com/dp/B004YAVF8I"
71+
},
72+
{
73+
"title": "Logitech MX Master 3S - Wireless Performance Mouse with Ultra-fast Scrolling, Ergo, 8K DPI, Track on Glass, Quiet Clicks, USB-C, Bluetooth, Windows, Linux, Chrome - Graphite",
74+
"asin": "B09HM94VDS",
75+
"brand": "Logitech",
76+
"stars": 4.5,
77+
"reviewsCount": 9333,
78+
"thumbnailImage": "https://m.media-amazon.com/images/I/41+eEANAv3L._AC_SY300_SX300_.jpg",
79+
"breadCrumbs": "Electronics›Computers & Accessories›Computer Accessories & Peripherals›Keyboards, Mice & Accessories›Mice",
80+
"description": "Logitech MX Master 3S Performance Wireless Mouse Introducing Logitech MX Master 3S – an iconic mouse remastered. Now with Quiet Clicks(2) and 8K DPI any-surface tracking for more feel and performance than ever before. Product details: Weight: 4.97 oz (141 g) Dimensions: 2 x 3.3 x 4.9 in (51 x 84.3 x 124.9 mm) Compatible with Windows, macOS, Linux, Chrome OS, iPadOS, Android operating systems (8) Rechargeable Li-Po (500 mAh) battery Sensor technology: Darkfield high precision Buttons: 7 buttons (Left/Right-click, Back/Forward, App-Switch, Wheel mode-shift, Middle click), Scroll Wheel, Thumbwheel, Gesture button Wireless operating distance: 33 ft (10 m) (9)Footnotes: (1) 4 mm minimum glass thickness (2) Compared to MX Master 3, MX Master 3S has 90% less Sound Power Level left and right click, measured at 1m (3) Compared to regular Logitech mouse without an electromagnetic scroll wheel (4) Compared to Logitech Master 2S mouse with Logitech Options installed and Smooth scrolling enabled (5) Requires Logi Options+ software, available for Windows and macOS (6) Not compatible with Logitech Unifying technology (7) Battery life may vary based on user and computing conditions. (8) Device basic functions will be supported without software for operating systems other than Windows and macOS (9) Wireless range may vary depending on operating environment and computer setup",
81+
"price": {
82+
"value": 89.99,
83+
"currency": "$"
84+
},
85+
"url": "https://www.amazon.com/dp/B09HM94VDS"
86+
},
87+
{
88+
"title": "Apple Magic Mouse - White Multi-Touch Surface ",
89+
"asin": "B0DL72PK1P",
90+
"brand": "Apple",
91+
"stars": 4.6,
92+
"reviewsCount": 18594,
93+
"thumbnailImage": "",
94+
"breadCrumbs": "",
95+
"description": null,
96+
"price": {
97+
"value": 78.99,
98+
"currency": "$"
99+
},
100+
"url": "https://www.amazon.com/dp/B0DL72PK1P"
101+
}
102+
]
103+
```
104+
105+
Search data sample:
106+
107+
```json
108+
[
109+
{
110+
"title": "Logitech MK270 Wireless Keyboard And Mouse Combo For Windows, 2.4 GHz Wireless, Compact Mouse, 8 Multimedia And Shortcut Keys, For PC, Laptop - Black",
111+
"asin": "B079JLY5M5",
112+
"brand": "Logitech",
113+
"stars": 4.5,
114+
"reviewsCount": 107637,
115+
"thumbnailImage": "https://m.media-amazon.com/images/I/61gSpxZTZZL.__AC_SX300_SY300_QL70_ML2_.jpg",
116+
"breadCrumbs": "Electronics›Computers & Accessories›Computer Accessories & Peripherals›Keyboards, Mice & Accessories›Keyboard & Mouse Combos",
117+
"description": "The stylish Logitech MK270 Wireless Keyboard and Mouse Combo is perfect for the home office or workplace. Ditch the touchpad for this full size keyboard and mouse. Easily connect using Logitech's plug and forget receiver—just plug it into the USB port, and you're ready to work. There's no lengthy installation procedure to slow you down. When you're on the move, the receiver stores comfortably inside the mouse. Both the keyboard and mouse included in the MK270 combo use wireless 2.4GHz connectivity to provide seamless, interruption free use. Use the keyboard within a 10 m range without keyboard lag. Work for longer with the MK270's long battery life. The keyboard can be used for up to 24 months, and the mouse for 12 months, without replacing batteries. The Logitech MK270 keyboard includes 8 hotkeys that are programmable to your most used applications to boost your productivity.",
118+
"price": {
119+
"value": 21.98,
120+
"currency": "$"
121+
},
122+
"url": "https://www.amazon.com/dp/B079JLY5M5"
123+
},
124+
{
125+
"title": "Wireless Keyboard and Mouse Combo - Round Keycaps, Full-Size Retro Typewriter Keyboard with Detachable Wrist Rest, Sleep Mode & Tilt Legs, 2.4GHz Cordless Connection for Mac/Windows/PC (Hot Pink)",
126+
"asin": "B0CQJV4BW3",
127+
"brand": "SABLUTE",
128+
"stars": 4.3,
129+
"reviewsCount": 928,
130+
"thumbnailImage": "https://m.media-amazon.com/images/I/61NOammUF2L.__AC_SY300_SX300_QL70_FMwebp_.jpg",
131+
"breadCrumbs": "Electronics›Computers & Accessories›Computer Accessories & Peripherals›Keyboards, Mice & Accessories›Keyboard & Mouse Combos",
132+
"description": null,
133+
"price": {
134+
"value": 39.99,
135+
"currency": "$"
136+
},
137+
"url": "https://www.amazon.com/dp/B0CQJV4BW3"
138+
},
139+
{
140+
"title": "Redragon S101 Gaming Keyboard, M601 Mouse, RGB Backlit Gaming Keyboard, Programmable Backlit Gaming Mouse, Value Combo Set [New Version]",
141+
"asin": "B00NLZUM36",
142+
"brand": "Redragon",
143+
"stars": 4.6,
144+
"reviewsCount": 46346,
145+
"thumbnailImage": "https://m.media-amazon.com/images/I/71QDJHG1PqL.__AC_SX300_SY300_QL70_FMwebp_.jpg",
146+
"breadCrumbs": "Video Games›PC›Accessories›Gaming Keyboards",
147+
"description": null,
148+
"price": {
149+
"value": 39.99,
150+
"currency": "$"
151+
},
152+
"url": "https://www.amazon.com/dp/B00NLZUM36"
153+
}
154+
]
155+
```
156+
157+
Product data sample:
158+
159+
```json
160+
[
161+
{
162+
"title": "Amazon Basics Wired Keyboard, Full-Sized, QWERTY Layout, Black",
163+
"asin": "B07WJ5D3H4",
164+
"brand": "Amazon Basics",
165+
"stars": 4.5,
166+
"reviewsCount": 7606,
167+
"thumbnailImage": "https://m.media-amazon.com/images/I/71ehwfAM4-L.__AC_SY300_SX300_QL70_FMwebp_.jpg",
168+
"breadCrumbs": "Electronics›Computers & Accessories›Computer Accessories & Peripherals›Keyboards, Mice & Accessories›Keyboards",
169+
"description": "Product DescriptionFeaturing a standard US QWERTY layout, the keyboard provides comfort and familiarity, while the sleek black design complements any tech setup or decor seamlessly. This wired keyboard and mouse set is great for those seeking a wired keyboard and mouse for home or office use. The mouse and keyboard combo offers a practical plug-and-play solution, compatible with multiple versions of Windows, including 2000, XP, Vista, 7, 8, and 10/11.From the ManufacturerAmazon Basics",
170+
"price": {
171+
"value": 18.04,
172+
"currency": "$"
173+
},
174+
"url": "https://www.amazon.com/dp/B07WJ5D3H4"
175+
}
176+
]
177+
```
178+
179+
Category data sample:
180+
181+
```json
182+
[
183+
{
184+
"title": "Logitech M185 Wireless Mouse, 2.4GHz with USB Mini Receiver, 12-Month Battery Life, 1000 DPI Optical Tracking, Ambidextrous PC/Mac/Laptop - Swift Grey",
185+
"asin": "B004YAVF8I",
186+
"brand": "Logitech",
187+
"stars": 4.5,
188+
"reviewsCount": 37418,
189+
"thumbnailImage": "https://m.media-amazon.com/images/I/5181UFuvoBL.__AC_SX300_SY300_QL70_FMwebp_.jpg",
190+
"breadCrumbs": "Electronics›Computers & Accessories›Computer Accessories & Peripherals›Keyboards, Mice & Accessories›Mice",
191+
"description": "Logitech Wireless Mouse M185. A simple, reliable mouse with plug-and-play wireless, a 1-year battery life and 3-year limited hardware warranty.(Battery life may vary based on user and computing conditions.) System Requirements: Windows Vista Windows 7 Windows 8 Windows 10|Mac OS X 10.5 or later|Chrome OS|Linux kernel 2.6+|USB port",
192+
"price": {
193+
"value": 13.97,
194+
"currency": "$"
195+
},
196+
"url": "https://www.amazon.com/dp/B004YAVF8I"
197+
},
198+
{
199+
"title": "Logitech MX Master 3S - Wireless Performance Mouse with Ultra-fast Scrolling, Ergo, 8K DPI, Track on Glass, Quiet Clicks, USB-C, Bluetooth, Windows, Linux, Chrome - Graphite",
200+
"asin": "B09HM94VDS",
201+
"brand": "Logitech",
202+
"stars": 4.5,
203+
"reviewsCount": 9333,
204+
"thumbnailImage": "https://m.media-amazon.com/images/I/41+eEANAv3L._AC_SY300_SX300_.jpg",
205+
"breadCrumbs": "Electronics›Computers & Accessories›Computer Accessories & Peripherals›Keyboards, Mice & Accessories›Mice",
206+
"description": "Logitech MX Master 3S Performance Wireless Mouse Introducing Logitech MX Master 3S – an iconic mouse remastered. Now with Quiet Clicks(2) and 8K DPI any-surface tracking for more feel and performance than ever before. Product details: Weight: 4.97 oz (141 g) Dimensions: 2 x 3.3 x 4.9 in (51 x 84.3 x 124.9 mm) Compatible with Windows, macOS, Linux, Chrome OS, iPadOS, Android operating systems (8) Rechargeable Li-Po (500 mAh) battery Sensor technology: Darkfield high precision Buttons: 7 buttons (Left/Right-click, Back/Forward, App-Switch, Wheel mode-shift, Middle click), Scroll Wheel, Thumbwheel, Gesture button Wireless operating distance: 33 ft (10 m) (9)Footnotes: (1) 4 mm minimum glass thickness (2) Compared to MX Master 3, MX Master 3S has 90% less Sound Power Level left and right click, measured at 1m (3) Compared to regular Logitech mouse without an electromagnetic scroll wheel (4) Compared to Logitech Master 2S mouse with Logitech Options installed and Smooth scrolling enabled (5) Requires Logi Options+ software, available for Windows and macOS (6) Not compatible with Logitech Unifying technology (7) Battery life may vary based on user and computing conditions. (8) Device basic functions will be supported without software for operating systems other than Windows and macOS (9) Wireless range may vary depending on operating environment and computer setup",
207+
"price": {
208+
"value": 89.99,
209+
"currency": "$"
210+
},
211+
"url": "https://www.amazon.com/dp/B09HM94VDS"
212+
},
213+
{
214+
"title": "Apple Magic Mouse - White Multi-Touch Surface ",
215+
"asin": "B0DL72PK1P",
216+
"brand": "Apple",
217+
"stars": 4.6,
218+
"reviewsCount": 18594,
219+
"thumbnailImage": "https://m.media-amazon.com/images/I/41U6Q0T5toL.__AC_SY445_SX342_QL70_FMwebp_.jpg",
220+
"breadCrumbs": "",
221+
"description": null,
222+
"price": {
223+
"value": 78.99,
224+
"currency": "$"
225+
},
226+
"url": "https://www.amazon.com/dp/B0DL72PK1P"
227+
}
228+
]
229+
```
230+
231+
## Other scrapers available
232+
233+
There are other native Make Apps powered by Apify. You can check out Apify Scraper for:
234+
235+
- Instagram Data
236+
- TikTok Data
237+
- Facebook Data
238+
- Google Search Data
239+
- Google Maps Emails Data
240+
- YouTube Data
241+
242+
And more! Because you can access any of our 4,500+ scrapers on Apify Store by using the [general Apify connections](https://www.make.com/en/integrations/apify).

0 commit comments

Comments
 (0)