1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "mode": "search",
12 "country": "de",
13 "queries": [
14 "nike"
15 ],
16 "urls": [
17 "https://www.vinted.de/member/3162455054"
18 ],
19 "sellers": [
20 "https://www.vinted.de/member/3162455054"
21 ],
22 "proxy": {
23 "useApifyProxy": true,
24 "apifyProxyGroups": [
25 "RESIDENTIAL"
26 ]
27 },
28 "incrementalMode": false,
29 "emitUnchanged": false,
30 "emitExpired": false
31};
32
33
34const run = await client.actor("abotapi/vinted-marketplace-scraper").call(input);
35
36
37console.log('Results from dataset');
38console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
39const { items } = await client.dataset(run.defaultDatasetId).listItems();
40items.forEach((item) => {
41 console.dir(item);
42});
43
44