1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "videoUrls": [
12 {
13 "url": "https://www.xvideos.com/video.oufvclb3b56/my_therapist_made_my_fantasy_come_true_-_lexis_star"
14 },
15 {
16 "url": "https://www.xvideos.com/video.opkiitu533e/alanna_s_bitty_bikini_comes_right_off_alanna_pow_brazzers_enter_xvpromo_on_official_site_for_discount"
17 },
18 {
19 "url": "https://www.xvideos.com/video.optlktt7c95/a_stranger_groped_me_on_a_public_bus_he_inserted_a_shaft_into_my_virgin_asshole_ai_"
20 },
21 {
22 "url": "https://www.xvideos.com/video.oofavpl9a3f/i_took_my_hot_stepmom_on_a_secret_vacation_and_filled_her_tight_pussy_-_cory_chase"
23 },
24 {
25 "url": "https://www.xvideos.com/video.oofpkpv3d79/gf_s_sister_no_penetration_just_rubbing_my_pussy_oops..._i_creampied_her"
26 }
27 ]
28};
29
30
31const run = await client.actor("maximedupre/xvideos-downloader").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