1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "search": "harry potter",
12 "startUrls": [
13 "https://www.goodreads.com/search?q=game+of+thrones&qid=",
14 "https://www.goodreads.com/book/show/59576065-acceptance",
15 "https://www.goodreads.com/list/show/1362.Best_History_Books_",
16 "https://www.goodreads.com/shelf/show/fiction",
17 "https://www.goodreads.com/genres/business",
18 "https://www.goodreads.com/author/list/1221698.Neil_Gaiman"
19 ],
20 "maxItems": 1,
21 "endPage": 1,
22 "extendOutputFunction": ($) => { return {} },
23 "customMapFunction": (object) => { return {...object} },
24 "proxy": {
25 "useApifyProxy": true,
26 "apifyProxyGroups": [
27 "RESIDENTIAL"
28 ]
29 }
30};
31
32
33const run = await client.actor("epctex/goodreads-scraper").call(input);
34
35
36console.log('Results from dataset');
37console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38const { items } = await client.dataset(run.defaultDatasetId).listItems();
39items.forEach((item) => {
40 console.dir(item);
41});
42
43