1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "startUrls": [
12 {
13 "url": "https://chatgpt.com/share/693011c8-0a3c-8006-b6cf-77d844d1bb51"
14 },
15 {
16 "url": "https://chatgpt.com/share/6a34732c-0fa4-83e8-aae1-95c25dd117c9"
17 },
18 {
19 "url": "https://chatgpt.com/share/6a33fce3-27e4-83eb-8913-a2b5a97ff5ba"
20 },
21 {
22 "url": "https://chatgpt.com/share/6a2d8c75-56f4-83e8-a61a-301e4c62b123"
23 },
24 {
25 "url": "https://chatgpt.com/share/6a2d06a3-a3b4-83ed-9e0a-8ec07e05e34f"
26 }
27 ]
28};
29
30
31const run = await client.actor("maximedupre/chatgpt-conversation-scraper").call(input);
32
33
34console.log('Results from dataset');
35console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
36const { items } = await client.dataset(run.defaultDatasetId).listItems();
37items.forEach((item) => {
38 console.dir(item);
39});
40
41