# XNXX Video Downloader (`maximedupre/xnxx-video-downloader`) Actor

Extract direct media links and metadata from public XNXX video URLs or IDs. Get titles, durations, thumbnails, MP4/HLS format variants, source URLs, and fresh Apify dataset exports.

- **URL**: https://apify.com/maximedupre/xnxx-video-downloader.md
- **Developed by:** [Maxime Dupré](https://apify.com/maximedupre) (community)
- **Categories:** Social media, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$2.65 / 1,000 resolved videos

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

### 📥 XNXX video downloader for URLs and IDs

XNXX Video Downloader extracts direct media links and metadata from public [XNXX](https://www.xnxx.com/) video URLs or video IDs. Add one or more known XNXX videos and get a clean Apify dataset with source video IDs, source URLs, titles, durations, thumbnails, MP4/HLS format variants, media URL expiry times when available, and scrape timestamps.

Use this XNXX downloader when you already have video links or IDs and need repeatable exports for content review, cataloging, media operations, research, archiving workflows, or an API pipeline. The Actor works with public, reachable XNXX video pages only. You do not need XNXX cookies, an XNXX account, a browser extension, or a source API key.

For a small first run, keep the prefilled sample targets and start the Actor. Once the output shape fits your workflow, paste your own list of public XNXX video URLs or IDs, run a larger batch, schedule the Actor, or call it through the Apify API.

### ✅ What this Actor does

- Accepts public XNXX watch-page URLs.
- Accepts raw XNXX video IDs.
- Deduplicates repeated URL and ID aliases by video ID.
- Saves one dataset row per successfully resolved public video.
- Returns all source-exposed direct media formats found for the video, including MP4 and HLS links when XNXX exposes them.
- Adds title, duration, thumbnail URL, source URL, video ID, and fetch timestamp when available.
- Parses media URL expiry timestamps when the signed source URL exposes one.
- Skips invalid, duplicate, private, removed, unavailable, blocked, or no-media targets without saving paid failure rows.

This Actor is focused on known public XNXX videos. It does not search XNXX, crawl categories, process albums, bypass private access, download files into Apify storage, create ZIP archives, or install a browser extension.

### 📦 Data you can export

Each output row represents one public XNXX video where media links were found. Core fields include:

- `videoId` - stable XNXX video identifier for dedupe and reruns.
- `sourceUrl` - source-confirmed XNXX watch URL.
- `title` - source video title, when available.
- `durationSeconds` - video duration in seconds, when available.
- `thumbnailUrl` - source thumbnail or poster image URL, when available.
- `fetchedAt` - ISO timestamp for when the direct media URLs were fetched.
- `availableFormats` - source-exposed media variants with `quality`, `width`, `height`, `contentType`, `mediaUrl`, and `expiresAt`.

Direct media links can be signed and time-limited. Use `fetchedAt` and `availableFormats[].expiresAt` to decide when to refresh results. The Actor does not invent missing dimensions or metadata; nullable fields stay empty when XNXX does not expose them.

You can open the dataset in Apify, export it as JSON, CSV, Excel, XML, RSS, or HTML, call it through the Apify API, schedule recurring runs, or connect results to webhooks and integrations.

### 🚀 How to run

1. Open the Actor input.
2. Add one or more public XNXX video URLs or IDs in **XNXX videos**.
3. Start the Actor.
4. Open the dataset.
5. Use `availableFormats` to choose the MP4 or HLS media link that fits your workflow.

The Actor pushes successful rows during the run, so you can inspect early results before a larger batch finishes.

### 🧾 Input

| Field | What to enter |
| ----- | ------------- |
| `targets` | One or more public XNXX video URLs or raw XNXX video IDs. |

Input example:

```json
{
	"targets": [
		"https://www.xnxx.com/video-1czsl51a/example_video",
		"1czsl51a"
	]
}
````

The public input accepts up to 100 targets per run. Submit fewer targets when you want a smaller test.

### 📤 Output example

```json
{
	"videoId": "1czsl51a",
	"sourceUrl": "https://www.xnxx.com/video-1czsl51a/example_video",
	"title": "Sample video",
	"durationSeconds": 2299,
	"thumbnailUrl": "https://thumb-cdn77.xnxx-cdn.com/example/0/xv_5_t.jpg",
	"fetchedAt": "2026-06-17T22:25:23.000Z",
	"availableFormats": [
		{
			"quality": "high",
			"width": null,
			"height": null,
			"contentType": "video/mp4",
			"mediaUrl": "https://mp4-cdn77.xnxx-cdn.com/example/video_360p.mp4?secure=...",
			"expiresAt": "2026-06-18T22:25:22.000Z"
		},
		{
			"quality": "hls",
			"width": null,
			"height": null,
			"contentType": "application/vnd.apple.mpegurl",
			"mediaUrl": "https://hls-cdn77.xnxx-cdn.com/example/hls.m3u8",
			"expiresAt": "2026-06-18T22:25:22.000Z"
		}
	]
}
```

### 💰 Pricing

This Actor uses pay-per-event pricing. You are charged only for each public XNXX video that is successfully resolved and saved.

The event price is `$0.00265` per resolved video. Targets that are invalid, unavailable, private, removed, blocked, duplicated, or missing media links do not create paid video events.

### ⚠️ Limits and caveats

This Actor works with public XNXX videos that are reachable without logging in. It does not bypass source access controls, account gates, age gates, region restrictions, deleted pages, paywalled pages, or rights restrictions.

Media links come from the source page and may expire. Run the Actor again when you need fresh direct URLs. The Actor returns direct links and metadata; it does not store large video files in Apify key-value storage by default.

### ❓ FAQ

#### Can I download private or login-only XNXX videos?

No. The Actor only works with public videos that XNXX exposes without user credentials. It does not use cookies, accounts, or browser sessions.

#### Does this save video files to Apify storage?

No. The current Actor returns direct source media links and metadata. This keeps the run lighter and avoids turning large file transfers into the default cost path.

#### Why are some fields null?

Some XNXX pages expose less metadata or fewer media details than others. The Actor keeps those fields null instead of guessing.

#### Why do media URLs include expiry times?

Some direct media URLs are signed by the source and can expire. The Actor adds `fetchedAt` and `expiresAt` so downstream workflows can decide when to refresh links.

### 📝 Changelog

- 0.1: Initial release.

### 🆘 Support

For issues, questions, or feature requests, [file a ticket](https://console.apify.com/actors/maximedupre~xnxx-video-downloader/issues) and I'll fix or implement it in less than 24h 🫡

### 🔗 Other actors

- [AShemaleTube Video Downloader ↗](https://apify.com/maximedupre/ashemaletube-video-downloader) - Extract public AShemaleTube media links and video metadata.
- [RedGifs Bulk Downloader ↗](https://apify.com/maximedupre/redgifs-bulk-downloader) - Export public RedGifs media links and metadata in bulk.
- [Streamable Video Downloader ↗](https://apify.com/maximedupre/streamable-video-downloader) - Get direct MP4 links and metadata from public Streamable videos.
- [Facebook Media Downloader ↗](https://apify.com/maximedupre/facebook-media-downloader) - Extract media links from public Facebook videos and reels.
- [TikTok Video Downloader ↗](https://apify.com/maximedupre/tiktok-video-downloader) - Save public TikTok video or audio files with source metadata.

**Made with ❤️ by Maxime Dupré**

# Actor input Schema

## `targets` (type: `array`):

Add one XNXX video URL or video ID per row.

## Actor input object example

```json
{
  "targets": [
    "https://www.xnxx.com/video-t25dr83/nympho_teen_wanna_fuck_her_neighbour_creampie_",
    "https://www.xnxx.com/video-1f4nl704/sneaky_teens_have_public_sex",
    "https://www.xnxx.com/video-19kocj4e/zu_viel_schwanz_fur_diesen_zierlichen_teenager_-_breakingteens",
    "https://www.xnxx.com/video-gnger83/old_man_fucks_tight_young_pussy_hardcore",
    "https://www.xnxx.com/video-13zxvr71/my_young_stepsister_wants_to_have_anal_sex",
    "https://www.xnxx.com/video-1eln7z1d/jovencita_caliente_cogiendo_duro_y_mamando_polla",
    "https://www.xnxx.com/video-15cs8p54/18_yo_teen_geisha_kyd_brought_to_her_limit_rough_",
    "https://www.xnxx.com/video-lhdjb5c/teen_got_creampied",
    "https://www.xnxx.com/video-15hr0x4e/hot_teen_brunette_having_sex_with_sugar",
    "https://www.xnxx.com/video-u3k2h35/teen_twin_stepsisters_fucking_around_with_their_older_stepbro",
    "https://www.xnxx.com/video-15ggyre8/hot_teen_girlfriends_relieve_your_stress_-_alex_adams",
    "https://www.xnxx.com/video-13515tc7/18videoz_-_a_perfect_finish_for_this_amazing_teen_lovemaking_scene",
    "https://www.xnxx.com/video-l7b4dfd/hot_fuck_his_daugher_fuckk",
    "https://www.xnxx.com/video-vwvjhda/teenager_in_costume_gets_fucked_and_facialized_by_her_horny_stepbrother_and_stepdad",
    "https://www.xnxx.com/video-148dlv38/fapadoo_4k_-_19yo_step_daughter_gets_the_cum_on_her_ass",
    "https://www.xnxx.com/video-154x1j80/horny_teen_fucks_her_black_stepdad",
    "https://www.xnxx.com/video-tfgf58d/young_shy_couple_let_us_film_em_having_a_great_fuck",
    "https://www.xnxx.com/video-xiofn31/petite_blonde_teen_got_cum_inside_by_foreigner",
    "https://www.xnxx.com/video-1f28a5ab/sexo_a_escondidas_en_piscina_publica_con_jovencita_culona_-_pervteen",
    "https://www.xnxx.com/video-m1o9n4a/teenies_share_a_raging_cock_together",
    "https://www.xnxx.com/video-w1ofte7/pawg_teen_step_sister_fucks_little_step_brother",
    "https://www.xnxx.com/video-q27gxde/nasty_teen_orders_two_guys_to_double_penetrate_her",
    "https://www.xnxx.com/video-1bqd5b3a/que_rica_nena_casi_me_vengo_dentro_de_su_vaginita_cerrada_esta_tan_cerrada_que_se_siente_muy_rico_",
    "https://www.xnxx.com/video-15c1en97/virgin_teen_gets_pussy_licked_for_1st_ever_andregotbars",
    "https://www.xnxx.com/video-twckn5a/bishop_seduce_y.",
    "https://www.xnxx.com/video-98pmd80/skinny_teen_gets_rough_anal._made_him_cum_twice",
    "https://www.xnxx.com/video-srlkz9f/busty_muslim_teen_gets_fucked_like_there_s_no_tomorrow_-_teen_porn",
    "https://www.xnxx.com/video-1ewer77e/mama_cachonda_pillada_follando_con_jovencito_por_su_marido",
    "https://www.xnxx.com/video-mexn3d1/teen_cutie_fucked_by_her_old_stepdaddy",
    "https://www.xnxx.com/video-15ythj60/nerdy_teenie_takes_dick_deep_in_her_ass_hole_on_film",
    "https://www.xnxx.com/video-wk0znfd/stepbrother_fucks_pawg_teen_step_sister",
    "https://www.xnxx.com/video-1h5vv1d2/compilation_teens_orgasm",
    "https://www.xnxx.com/video-13odkn86/petite_teen_deflowered_by_step-uncle",
    "https://www.xnxx.com/video-rxuzz08/japanese_man_rails_tiny_teen_thai_pussy",
    "https://www.xnxx.com/video-ixas3aa/cute_teeny_lizi_fucks_young_handsome_guy",
    "https://www.xnxx.com/video-11yt0d0d/_-_",
    "https://www.xnxx.com/video-1egxdrd4/deutsches_amateur_paar_macht_einen_ffm_dreier",
    "https://www.xnxx.com/video-184donb0/sexy_amateur_vids",
    "https://www.xnxx.com/video-k3yx339/jess_joli_amateur_porn",
    "https://www.xnxx.com/video-13pvmv3f/_4_dx_59_-_",
    "https://www.xnxx.com/video-14rn5f54/she_sucks_and_fucks_her_stepdad_-_amateur_porn",
    "https://www.xnxx.com/video-qjwjvb4/amateur_real_milff",
    "https://www.xnxx.com/video-1gm874a3/amateur_pov_ffm_threesome_sex",
    "https://www.xnxx.com/video-cduij3c/thick_amateur",
    "https://www.xnxx.com/video-p9qvl46/amateur_latina_girlfriend_makes_sex_tape_of_her_first_time.",
    "https://www.xnxx.com/video-xs4vn4c/amateur_slut_likes_her_pussy_streched",
    "https://www.xnxx.com/video-rhpwv51/the_best_amateur_porn_on_the_planet",
    "https://www.xnxx.com/video-1hfjpg32/german_amateur_swinger_party_wo_frauen_in_den_mund_gespritzt_bekommen",
    "https://www.xnxx.com/video-1fzc9r07/forse_intendeva_da_un_altra_parte._vero_anale_amatoriale",
    "https://www.xnxx.com/video-1h0rsvf6/homemade_amateur",
    "https://www.xnxx.com/video-1dfo9x6f/german_teens_at_an_amateur_sex_party",
    "https://www.xnxx.com/video-1789nx1a/amateur_wife",
    "https://www.xnxx.com/video-1ddlbhd9/true_outkast_productions_1st_amateur",
    "https://www.xnxx.com/video-1gnqdyd6/real_love_real_sex_-_amateur_home_video",
    "https://www.xnxx.com/video-1h5tngc6/amateur_wife_emma._real_homemade_video_4k",
    "https://www.xnxx.com/video-fyioh6d/mormon_amateur_creampied_after_sucking_and_riding_cock_in_hd",
    "https://www.xnxx.com/video-16pyk872/german_fucks_his_18yo_step_daughter_-_amateur_homemade",
    "https://www.xnxx.com/video-1h86mj9d/amatur_threesome",
    "https://www.xnxx.com/video-xq6vz53/black_shaved_teen_creampie_amateur",
    "https://www.xnxx.com/video-1fzt9r69/_mdx_sexy_amateur_with_cowtoe_pussy",
    "https://www.xnxx.com/video-1brq536b/amateur_girlfriend_takes_huge_cumshots_in_public_compilation",
    "https://www.xnxx.com/video-11xw2v91/amateur_wife_gets_anal_cream_pie",
    "https://www.xnxx.com/video-1bkzkdb2/beautiful_18_year_old_amateur_neighbor_yelling_at_me_to_stop",
    "https://www.xnxx.com/video-xuxbvd5/the_best_amateur_porn_on_the_planet",
    "https://www.xnxx.com/video-z4l3pb0/amateur._lucky_fucks_twins",
    "https://www.xnxx.com/video-p9gcte5/amateur_couple_does_doggystyle",
    "https://www.xnxx.com/video-12iy9ne2/the_best_amateur_porn_on_the_planet",
    "https://www.xnxx.com/video-yd8i578/amateur_boxxx_-_japanese_cosplay_teen_masturbation",
    "https://www.xnxx.com/video-147ju138/_-_1",
    "https://www.xnxx.com/video-1c3c517a/real_amateur_couple_anal_creampie",
    "https://www.xnxx.com/video-ut3iv8b/grndes_tetas_romanticas_de_zenda_en_publico_chupando_polla",
    "https://www.xnxx.com/video-10w80f14/public_fucking_a_guy_in_pov_after_he_cums_a_lot_russians_speak_with_subtitles_",
    "https://www.xnxx.com/video-1fbby7b3/sexo_a_escondidas_con_jovencita_culona_y_pervertida_en_publico",
    "https://www.xnxx.com/video-1gvzoy98/public_fetish_sex_big_dick_creampie_fantasy",
    "https://www.xnxx.com/video-1bzmd338/being_freaky_in_public_compilation",
    "https://www.xnxx.com/video-18dhbv84/manoseada_por_un_desconocido_en_el_cine...me_mojo_el_cono_y_me_deje_masturbar_en_publico.",
    "https://www.xnxx.com/video-1fibfb36/public",
    "https://www.xnxx.com/video-tdk6b92/public_cum",
    "https://www.xnxx.com/video-cskn316/bitch_sucks_cock_in_shitter",
    "https://www.xnxx.com/video-156mgz17/big_black_dick_girl_can_t_take_the_whole_bbc_public_sex",
    "https://www.xnxx.com/video-jhxmdf7/japanese_slut_in_school_uniforn_banged_hard_in_the_public_subway",
    "https://www.xnxx.com/video-1frhldee/desconocido_me_descubrio_follandome_a_chorros_en_el_coche_-_via_publica",
    "https://www.xnxx.com/video-1fphynea/watch_this_beauty_moan_loudly_as_she_rides_him_hard_on_the_public_beach",
    "https://www.xnxx.com/video-13ryehdc/they_jerk_my_cock_in_public_in_the_fast_food_b_a_g",
    "https://www.xnxx.com/video-19ue09ca/public_park_risky_sex_with_huge_natural_tits_hailey_rose",
    "https://www.xnxx.com/video-1byw0n2d/nasty_stepsister_sucks_cum_from_stepbro_s_hard_11inch_bbc_in_public",
    "https://www.xnxx.com/video-1fk8b9f1/wife_s_first_public_dogging._wife_has_public_sex_on_the_street_with_a_stranger._stranger_joins_couple_in_outdoor_sex._threesome._mfm._cuckold.",
    "https://www.xnxx.com/video-ock8rf8/youngsters_fuck_on_public_bus",
    "https://www.xnxx.com/video-12scfdce/public_tease_for_step_daddy_she_want_sex_in_public_in_his_car",
    "https://www.xnxx.com/video-161ljh3d/my_co-worker_loves_to_fuck_in_public_part_2",
    "https://www.xnxx.com/video-10s0h98d/public_agent_ebony_supermodel_zaawaadi_fucks_a_big_fat_cock_deep_in_her_pink_pussy",
    "https://www.xnxx.com/video-19uv55e6/hot_babe_enjoys_risky_fuck_in_public",
    "https://www.xnxx.com/video-1aipwzcc/casada_com_rabo_na_janela_oferecendo_cu_pra_todos_na_rua_em_publico_",
    "https://www.xnxx.com/video-17x27d6f/espiando_a_chicas_en_el_bano_publico_de_centro_comercial",
    "https://www.xnxx.com/video-11u6wp18/obligo_a_mi_novio_a_que_me_chupe_la_vagina_en_publico_y_termino_corriendome_en_su_cara_y_mojandolo_todo_jaja",
    "https://www.xnxx.com/video-1g6bbtdd/follando_en_publico_en_un_auto_big_cum_face",
    "https://www.xnxx.com/video-1bys9tca/extreme_public_and_outdoor_sex_and_blowjobs_",
    "https://www.xnxx.com/video-1deurd97/follando_en_un_parque_publico_con_gente_pasando_no_nos_importa",
    "https://www.xnxx.com/video-l3g3v03/big_huge",
    "https://www.xnxx.com/video-lr1ufdd/big_ole_dick"
  ]
}
```

# Actor output Schema

## `results` (type: `string`):

Open successful video results with metadata and direct media links.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "targets": [
        "https://www.xnxx.com/video-t25dr83/nympho_teen_wanna_fuck_her_neighbour_creampie_",
        "https://www.xnxx.com/video-1f4nl704/sneaky_teens_have_public_sex",
        "https://www.xnxx.com/video-19kocj4e/zu_viel_schwanz_fur_diesen_zierlichen_teenager_-_breakingteens",
        "https://www.xnxx.com/video-gnger83/old_man_fucks_tight_young_pussy_hardcore",
        "https://www.xnxx.com/video-13zxvr71/my_young_stepsister_wants_to_have_anal_sex",
        "https://www.xnxx.com/video-1eln7z1d/jovencita_caliente_cogiendo_duro_y_mamando_polla",
        "https://www.xnxx.com/video-15cs8p54/18_yo_teen_geisha_kyd_brought_to_her_limit_rough_",
        "https://www.xnxx.com/video-lhdjb5c/teen_got_creampied",
        "https://www.xnxx.com/video-15hr0x4e/hot_teen_brunette_having_sex_with_sugar",
        "https://www.xnxx.com/video-u3k2h35/teen_twin_stepsisters_fucking_around_with_their_older_stepbro",
        "https://www.xnxx.com/video-15ggyre8/hot_teen_girlfriends_relieve_your_stress_-_alex_adams",
        "https://www.xnxx.com/video-13515tc7/18videoz_-_a_perfect_finish_for_this_amazing_teen_lovemaking_scene",
        "https://www.xnxx.com/video-l7b4dfd/hot_fuck_his_daugher_fuckk",
        "https://www.xnxx.com/video-vwvjhda/teenager_in_costume_gets_fucked_and_facialized_by_her_horny_stepbrother_and_stepdad",
        "https://www.xnxx.com/video-148dlv38/fapadoo_4k_-_19yo_step_daughter_gets_the_cum_on_her_ass",
        "https://www.xnxx.com/video-154x1j80/horny_teen_fucks_her_black_stepdad",
        "https://www.xnxx.com/video-tfgf58d/young_shy_couple_let_us_film_em_having_a_great_fuck",
        "https://www.xnxx.com/video-xiofn31/petite_blonde_teen_got_cum_inside_by_foreigner",
        "https://www.xnxx.com/video-1f28a5ab/sexo_a_escondidas_en_piscina_publica_con_jovencita_culona_-_pervteen",
        "https://www.xnxx.com/video-m1o9n4a/teenies_share_a_raging_cock_together",
        "https://www.xnxx.com/video-w1ofte7/pawg_teen_step_sister_fucks_little_step_brother",
        "https://www.xnxx.com/video-q27gxde/nasty_teen_orders_two_guys_to_double_penetrate_her",
        "https://www.xnxx.com/video-1bqd5b3a/que_rica_nena_casi_me_vengo_dentro_de_su_vaginita_cerrada_esta_tan_cerrada_que_se_siente_muy_rico_",
        "https://www.xnxx.com/video-15c1en97/virgin_teen_gets_pussy_licked_for_1st_ever_andregotbars",
        "https://www.xnxx.com/video-twckn5a/bishop_seduce_y.",
        "https://www.xnxx.com/video-98pmd80/skinny_teen_gets_rough_anal._made_him_cum_twice",
        "https://www.xnxx.com/video-srlkz9f/busty_muslim_teen_gets_fucked_like_there_s_no_tomorrow_-_teen_porn",
        "https://www.xnxx.com/video-1ewer77e/mama_cachonda_pillada_follando_con_jovencito_por_su_marido",
        "https://www.xnxx.com/video-mexn3d1/teen_cutie_fucked_by_her_old_stepdaddy",
        "https://www.xnxx.com/video-15ythj60/nerdy_teenie_takes_dick_deep_in_her_ass_hole_on_film",
        "https://www.xnxx.com/video-wk0znfd/stepbrother_fucks_pawg_teen_step_sister",
        "https://www.xnxx.com/video-1h5vv1d2/compilation_teens_orgasm",
        "https://www.xnxx.com/video-13odkn86/petite_teen_deflowered_by_step-uncle",
        "https://www.xnxx.com/video-rxuzz08/japanese_man_rails_tiny_teen_thai_pussy",
        "https://www.xnxx.com/video-ixas3aa/cute_teeny_lizi_fucks_young_handsome_guy",
        "https://www.xnxx.com/video-11yt0d0d/_-_",
        "https://www.xnxx.com/video-1egxdrd4/deutsches_amateur_paar_macht_einen_ffm_dreier",
        "https://www.xnxx.com/video-184donb0/sexy_amateur_vids",
        "https://www.xnxx.com/video-k3yx339/jess_joli_amateur_porn",
        "https://www.xnxx.com/video-13pvmv3f/_4_dx_59_-_",
        "https://www.xnxx.com/video-14rn5f54/she_sucks_and_fucks_her_stepdad_-_amateur_porn",
        "https://www.xnxx.com/video-qjwjvb4/amateur_real_milff",
        "https://www.xnxx.com/video-1gm874a3/amateur_pov_ffm_threesome_sex",
        "https://www.xnxx.com/video-cduij3c/thick_amateur",
        "https://www.xnxx.com/video-p9qvl46/amateur_latina_girlfriend_makes_sex_tape_of_her_first_time.",
        "https://www.xnxx.com/video-xs4vn4c/amateur_slut_likes_her_pussy_streched",
        "https://www.xnxx.com/video-rhpwv51/the_best_amateur_porn_on_the_planet",
        "https://www.xnxx.com/video-1hfjpg32/german_amateur_swinger_party_wo_frauen_in_den_mund_gespritzt_bekommen",
        "https://www.xnxx.com/video-1fzc9r07/forse_intendeva_da_un_altra_parte._vero_anale_amatoriale",
        "https://www.xnxx.com/video-1h0rsvf6/homemade_amateur",
        "https://www.xnxx.com/video-1dfo9x6f/german_teens_at_an_amateur_sex_party",
        "https://www.xnxx.com/video-1789nx1a/amateur_wife",
        "https://www.xnxx.com/video-1ddlbhd9/true_outkast_productions_1st_amateur",
        "https://www.xnxx.com/video-1gnqdyd6/real_love_real_sex_-_amateur_home_video",
        "https://www.xnxx.com/video-1h5tngc6/amateur_wife_emma._real_homemade_video_4k",
        "https://www.xnxx.com/video-fyioh6d/mormon_amateur_creampied_after_sucking_and_riding_cock_in_hd",
        "https://www.xnxx.com/video-16pyk872/german_fucks_his_18yo_step_daughter_-_amateur_homemade",
        "https://www.xnxx.com/video-1h86mj9d/amatur_threesome",
        "https://www.xnxx.com/video-xq6vz53/black_shaved_teen_creampie_amateur",
        "https://www.xnxx.com/video-1fzt9r69/_mdx_sexy_amateur_with_cowtoe_pussy",
        "https://www.xnxx.com/video-1brq536b/amateur_girlfriend_takes_huge_cumshots_in_public_compilation",
        "https://www.xnxx.com/video-11xw2v91/amateur_wife_gets_anal_cream_pie",
        "https://www.xnxx.com/video-1bkzkdb2/beautiful_18_year_old_amateur_neighbor_yelling_at_me_to_stop",
        "https://www.xnxx.com/video-xuxbvd5/the_best_amateur_porn_on_the_planet",
        "https://www.xnxx.com/video-z4l3pb0/amateur._lucky_fucks_twins",
        "https://www.xnxx.com/video-p9gcte5/amateur_couple_does_doggystyle",
        "https://www.xnxx.com/video-12iy9ne2/the_best_amateur_porn_on_the_planet",
        "https://www.xnxx.com/video-yd8i578/amateur_boxxx_-_japanese_cosplay_teen_masturbation",
        "https://www.xnxx.com/video-147ju138/_-_1",
        "https://www.xnxx.com/video-1c3c517a/real_amateur_couple_anal_creampie",
        "https://www.xnxx.com/video-ut3iv8b/grndes_tetas_romanticas_de_zenda_en_publico_chupando_polla",
        "https://www.xnxx.com/video-10w80f14/public_fucking_a_guy_in_pov_after_he_cums_a_lot_russians_speak_with_subtitles_",
        "https://www.xnxx.com/video-1fbby7b3/sexo_a_escondidas_con_jovencita_culona_y_pervertida_en_publico",
        "https://www.xnxx.com/video-1gvzoy98/public_fetish_sex_big_dick_creampie_fantasy",
        "https://www.xnxx.com/video-1bzmd338/being_freaky_in_public_compilation",
        "https://www.xnxx.com/video-18dhbv84/manoseada_por_un_desconocido_en_el_cine...me_mojo_el_cono_y_me_deje_masturbar_en_publico.",
        "https://www.xnxx.com/video-1fibfb36/public",
        "https://www.xnxx.com/video-tdk6b92/public_cum",
        "https://www.xnxx.com/video-cskn316/bitch_sucks_cock_in_shitter",
        "https://www.xnxx.com/video-156mgz17/big_black_dick_girl_can_t_take_the_whole_bbc_public_sex",
        "https://www.xnxx.com/video-jhxmdf7/japanese_slut_in_school_uniforn_banged_hard_in_the_public_subway",
        "https://www.xnxx.com/video-1frhldee/desconocido_me_descubrio_follandome_a_chorros_en_el_coche_-_via_publica",
        "https://www.xnxx.com/video-1fphynea/watch_this_beauty_moan_loudly_as_she_rides_him_hard_on_the_public_beach",
        "https://www.xnxx.com/video-13ryehdc/they_jerk_my_cock_in_public_in_the_fast_food_b_a_g",
        "https://www.xnxx.com/video-19ue09ca/public_park_risky_sex_with_huge_natural_tits_hailey_rose",
        "https://www.xnxx.com/video-1byw0n2d/nasty_stepsister_sucks_cum_from_stepbro_s_hard_11inch_bbc_in_public",
        "https://www.xnxx.com/video-1fk8b9f1/wife_s_first_public_dogging._wife_has_public_sex_on_the_street_with_a_stranger._stranger_joins_couple_in_outdoor_sex._threesome._mfm._cuckold.",
        "https://www.xnxx.com/video-ock8rf8/youngsters_fuck_on_public_bus",
        "https://www.xnxx.com/video-12scfdce/public_tease_for_step_daddy_she_want_sex_in_public_in_his_car",
        "https://www.xnxx.com/video-161ljh3d/my_co-worker_loves_to_fuck_in_public_part_2",
        "https://www.xnxx.com/video-10s0h98d/public_agent_ebony_supermodel_zaawaadi_fucks_a_big_fat_cock_deep_in_her_pink_pussy",
        "https://www.xnxx.com/video-19uv55e6/hot_babe_enjoys_risky_fuck_in_public",
        "https://www.xnxx.com/video-1aipwzcc/casada_com_rabo_na_janela_oferecendo_cu_pra_todos_na_rua_em_publico_",
        "https://www.xnxx.com/video-17x27d6f/espiando_a_chicas_en_el_bano_publico_de_centro_comercial",
        "https://www.xnxx.com/video-11u6wp18/obligo_a_mi_novio_a_que_me_chupe_la_vagina_en_publico_y_termino_corriendome_en_su_cara_y_mojandolo_todo_jaja",
        "https://www.xnxx.com/video-1g6bbtdd/follando_en_publico_en_un_auto_big_cum_face",
        "https://www.xnxx.com/video-1bys9tca/extreme_public_and_outdoor_sex_and_blowjobs_",
        "https://www.xnxx.com/video-1deurd97/follando_en_un_parque_publico_con_gente_pasando_no_nos_importa",
        "https://www.xnxx.com/video-l3g3v03/big_huge",
        "https://www.xnxx.com/video-lr1ufdd/big_ole_dick"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("maximedupre/xnxx-video-downloader").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "targets": [
        "https://www.xnxx.com/video-t25dr83/nympho_teen_wanna_fuck_her_neighbour_creampie_",
        "https://www.xnxx.com/video-1f4nl704/sneaky_teens_have_public_sex",
        "https://www.xnxx.com/video-19kocj4e/zu_viel_schwanz_fur_diesen_zierlichen_teenager_-_breakingteens",
        "https://www.xnxx.com/video-gnger83/old_man_fucks_tight_young_pussy_hardcore",
        "https://www.xnxx.com/video-13zxvr71/my_young_stepsister_wants_to_have_anal_sex",
        "https://www.xnxx.com/video-1eln7z1d/jovencita_caliente_cogiendo_duro_y_mamando_polla",
        "https://www.xnxx.com/video-15cs8p54/18_yo_teen_geisha_kyd_brought_to_her_limit_rough_",
        "https://www.xnxx.com/video-lhdjb5c/teen_got_creampied",
        "https://www.xnxx.com/video-15hr0x4e/hot_teen_brunette_having_sex_with_sugar",
        "https://www.xnxx.com/video-u3k2h35/teen_twin_stepsisters_fucking_around_with_their_older_stepbro",
        "https://www.xnxx.com/video-15ggyre8/hot_teen_girlfriends_relieve_your_stress_-_alex_adams",
        "https://www.xnxx.com/video-13515tc7/18videoz_-_a_perfect_finish_for_this_amazing_teen_lovemaking_scene",
        "https://www.xnxx.com/video-l7b4dfd/hot_fuck_his_daugher_fuckk",
        "https://www.xnxx.com/video-vwvjhda/teenager_in_costume_gets_fucked_and_facialized_by_her_horny_stepbrother_and_stepdad",
        "https://www.xnxx.com/video-148dlv38/fapadoo_4k_-_19yo_step_daughter_gets_the_cum_on_her_ass",
        "https://www.xnxx.com/video-154x1j80/horny_teen_fucks_her_black_stepdad",
        "https://www.xnxx.com/video-tfgf58d/young_shy_couple_let_us_film_em_having_a_great_fuck",
        "https://www.xnxx.com/video-xiofn31/petite_blonde_teen_got_cum_inside_by_foreigner",
        "https://www.xnxx.com/video-1f28a5ab/sexo_a_escondidas_en_piscina_publica_con_jovencita_culona_-_pervteen",
        "https://www.xnxx.com/video-m1o9n4a/teenies_share_a_raging_cock_together",
        "https://www.xnxx.com/video-w1ofte7/pawg_teen_step_sister_fucks_little_step_brother",
        "https://www.xnxx.com/video-q27gxde/nasty_teen_orders_two_guys_to_double_penetrate_her",
        "https://www.xnxx.com/video-1bqd5b3a/que_rica_nena_casi_me_vengo_dentro_de_su_vaginita_cerrada_esta_tan_cerrada_que_se_siente_muy_rico_",
        "https://www.xnxx.com/video-15c1en97/virgin_teen_gets_pussy_licked_for_1st_ever_andregotbars",
        "https://www.xnxx.com/video-twckn5a/bishop_seduce_y.",
        "https://www.xnxx.com/video-98pmd80/skinny_teen_gets_rough_anal._made_him_cum_twice",
        "https://www.xnxx.com/video-srlkz9f/busty_muslim_teen_gets_fucked_like_there_s_no_tomorrow_-_teen_porn",
        "https://www.xnxx.com/video-1ewer77e/mama_cachonda_pillada_follando_con_jovencito_por_su_marido",
        "https://www.xnxx.com/video-mexn3d1/teen_cutie_fucked_by_her_old_stepdaddy",
        "https://www.xnxx.com/video-15ythj60/nerdy_teenie_takes_dick_deep_in_her_ass_hole_on_film",
        "https://www.xnxx.com/video-wk0znfd/stepbrother_fucks_pawg_teen_step_sister",
        "https://www.xnxx.com/video-1h5vv1d2/compilation_teens_orgasm",
        "https://www.xnxx.com/video-13odkn86/petite_teen_deflowered_by_step-uncle",
        "https://www.xnxx.com/video-rxuzz08/japanese_man_rails_tiny_teen_thai_pussy",
        "https://www.xnxx.com/video-ixas3aa/cute_teeny_lizi_fucks_young_handsome_guy",
        "https://www.xnxx.com/video-11yt0d0d/_-_",
        "https://www.xnxx.com/video-1egxdrd4/deutsches_amateur_paar_macht_einen_ffm_dreier",
        "https://www.xnxx.com/video-184donb0/sexy_amateur_vids",
        "https://www.xnxx.com/video-k3yx339/jess_joli_amateur_porn",
        "https://www.xnxx.com/video-13pvmv3f/_4_dx_59_-_",
        "https://www.xnxx.com/video-14rn5f54/she_sucks_and_fucks_her_stepdad_-_amateur_porn",
        "https://www.xnxx.com/video-qjwjvb4/amateur_real_milff",
        "https://www.xnxx.com/video-1gm874a3/amateur_pov_ffm_threesome_sex",
        "https://www.xnxx.com/video-cduij3c/thick_amateur",
        "https://www.xnxx.com/video-p9qvl46/amateur_latina_girlfriend_makes_sex_tape_of_her_first_time.",
        "https://www.xnxx.com/video-xs4vn4c/amateur_slut_likes_her_pussy_streched",
        "https://www.xnxx.com/video-rhpwv51/the_best_amateur_porn_on_the_planet",
        "https://www.xnxx.com/video-1hfjpg32/german_amateur_swinger_party_wo_frauen_in_den_mund_gespritzt_bekommen",
        "https://www.xnxx.com/video-1fzc9r07/forse_intendeva_da_un_altra_parte._vero_anale_amatoriale",
        "https://www.xnxx.com/video-1h0rsvf6/homemade_amateur",
        "https://www.xnxx.com/video-1dfo9x6f/german_teens_at_an_amateur_sex_party",
        "https://www.xnxx.com/video-1789nx1a/amateur_wife",
        "https://www.xnxx.com/video-1ddlbhd9/true_outkast_productions_1st_amateur",
        "https://www.xnxx.com/video-1gnqdyd6/real_love_real_sex_-_amateur_home_video",
        "https://www.xnxx.com/video-1h5tngc6/amateur_wife_emma._real_homemade_video_4k",
        "https://www.xnxx.com/video-fyioh6d/mormon_amateur_creampied_after_sucking_and_riding_cock_in_hd",
        "https://www.xnxx.com/video-16pyk872/german_fucks_his_18yo_step_daughter_-_amateur_homemade",
        "https://www.xnxx.com/video-1h86mj9d/amatur_threesome",
        "https://www.xnxx.com/video-xq6vz53/black_shaved_teen_creampie_amateur",
        "https://www.xnxx.com/video-1fzt9r69/_mdx_sexy_amateur_with_cowtoe_pussy",
        "https://www.xnxx.com/video-1brq536b/amateur_girlfriend_takes_huge_cumshots_in_public_compilation",
        "https://www.xnxx.com/video-11xw2v91/amateur_wife_gets_anal_cream_pie",
        "https://www.xnxx.com/video-1bkzkdb2/beautiful_18_year_old_amateur_neighbor_yelling_at_me_to_stop",
        "https://www.xnxx.com/video-xuxbvd5/the_best_amateur_porn_on_the_planet",
        "https://www.xnxx.com/video-z4l3pb0/amateur._lucky_fucks_twins",
        "https://www.xnxx.com/video-p9gcte5/amateur_couple_does_doggystyle",
        "https://www.xnxx.com/video-12iy9ne2/the_best_amateur_porn_on_the_planet",
        "https://www.xnxx.com/video-yd8i578/amateur_boxxx_-_japanese_cosplay_teen_masturbation",
        "https://www.xnxx.com/video-147ju138/_-_1",
        "https://www.xnxx.com/video-1c3c517a/real_amateur_couple_anal_creampie",
        "https://www.xnxx.com/video-ut3iv8b/grndes_tetas_romanticas_de_zenda_en_publico_chupando_polla",
        "https://www.xnxx.com/video-10w80f14/public_fucking_a_guy_in_pov_after_he_cums_a_lot_russians_speak_with_subtitles_",
        "https://www.xnxx.com/video-1fbby7b3/sexo_a_escondidas_con_jovencita_culona_y_pervertida_en_publico",
        "https://www.xnxx.com/video-1gvzoy98/public_fetish_sex_big_dick_creampie_fantasy",
        "https://www.xnxx.com/video-1bzmd338/being_freaky_in_public_compilation",
        "https://www.xnxx.com/video-18dhbv84/manoseada_por_un_desconocido_en_el_cine...me_mojo_el_cono_y_me_deje_masturbar_en_publico.",
        "https://www.xnxx.com/video-1fibfb36/public",
        "https://www.xnxx.com/video-tdk6b92/public_cum",
        "https://www.xnxx.com/video-cskn316/bitch_sucks_cock_in_shitter",
        "https://www.xnxx.com/video-156mgz17/big_black_dick_girl_can_t_take_the_whole_bbc_public_sex",
        "https://www.xnxx.com/video-jhxmdf7/japanese_slut_in_school_uniforn_banged_hard_in_the_public_subway",
        "https://www.xnxx.com/video-1frhldee/desconocido_me_descubrio_follandome_a_chorros_en_el_coche_-_via_publica",
        "https://www.xnxx.com/video-1fphynea/watch_this_beauty_moan_loudly_as_she_rides_him_hard_on_the_public_beach",
        "https://www.xnxx.com/video-13ryehdc/they_jerk_my_cock_in_public_in_the_fast_food_b_a_g",
        "https://www.xnxx.com/video-19ue09ca/public_park_risky_sex_with_huge_natural_tits_hailey_rose",
        "https://www.xnxx.com/video-1byw0n2d/nasty_stepsister_sucks_cum_from_stepbro_s_hard_11inch_bbc_in_public",
        "https://www.xnxx.com/video-1fk8b9f1/wife_s_first_public_dogging._wife_has_public_sex_on_the_street_with_a_stranger._stranger_joins_couple_in_outdoor_sex._threesome._mfm._cuckold.",
        "https://www.xnxx.com/video-ock8rf8/youngsters_fuck_on_public_bus",
        "https://www.xnxx.com/video-12scfdce/public_tease_for_step_daddy_she_want_sex_in_public_in_his_car",
        "https://www.xnxx.com/video-161ljh3d/my_co-worker_loves_to_fuck_in_public_part_2",
        "https://www.xnxx.com/video-10s0h98d/public_agent_ebony_supermodel_zaawaadi_fucks_a_big_fat_cock_deep_in_her_pink_pussy",
        "https://www.xnxx.com/video-19uv55e6/hot_babe_enjoys_risky_fuck_in_public",
        "https://www.xnxx.com/video-1aipwzcc/casada_com_rabo_na_janela_oferecendo_cu_pra_todos_na_rua_em_publico_",
        "https://www.xnxx.com/video-17x27d6f/espiando_a_chicas_en_el_bano_publico_de_centro_comercial",
        "https://www.xnxx.com/video-11u6wp18/obligo_a_mi_novio_a_que_me_chupe_la_vagina_en_publico_y_termino_corriendome_en_su_cara_y_mojandolo_todo_jaja",
        "https://www.xnxx.com/video-1g6bbtdd/follando_en_publico_en_un_auto_big_cum_face",
        "https://www.xnxx.com/video-1bys9tca/extreme_public_and_outdoor_sex_and_blowjobs_",
        "https://www.xnxx.com/video-1deurd97/follando_en_un_parque_publico_con_gente_pasando_no_nos_importa",
        "https://www.xnxx.com/video-l3g3v03/big_huge",
        "https://www.xnxx.com/video-lr1ufdd/big_ole_dick",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("maximedupre/xnxx-video-downloader").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "targets": [
    "https://www.xnxx.com/video-t25dr83/nympho_teen_wanna_fuck_her_neighbour_creampie_",
    "https://www.xnxx.com/video-1f4nl704/sneaky_teens_have_public_sex",
    "https://www.xnxx.com/video-19kocj4e/zu_viel_schwanz_fur_diesen_zierlichen_teenager_-_breakingteens",
    "https://www.xnxx.com/video-gnger83/old_man_fucks_tight_young_pussy_hardcore",
    "https://www.xnxx.com/video-13zxvr71/my_young_stepsister_wants_to_have_anal_sex",
    "https://www.xnxx.com/video-1eln7z1d/jovencita_caliente_cogiendo_duro_y_mamando_polla",
    "https://www.xnxx.com/video-15cs8p54/18_yo_teen_geisha_kyd_brought_to_her_limit_rough_",
    "https://www.xnxx.com/video-lhdjb5c/teen_got_creampied",
    "https://www.xnxx.com/video-15hr0x4e/hot_teen_brunette_having_sex_with_sugar",
    "https://www.xnxx.com/video-u3k2h35/teen_twin_stepsisters_fucking_around_with_their_older_stepbro",
    "https://www.xnxx.com/video-15ggyre8/hot_teen_girlfriends_relieve_your_stress_-_alex_adams",
    "https://www.xnxx.com/video-13515tc7/18videoz_-_a_perfect_finish_for_this_amazing_teen_lovemaking_scene",
    "https://www.xnxx.com/video-l7b4dfd/hot_fuck_his_daugher_fuckk",
    "https://www.xnxx.com/video-vwvjhda/teenager_in_costume_gets_fucked_and_facialized_by_her_horny_stepbrother_and_stepdad",
    "https://www.xnxx.com/video-148dlv38/fapadoo_4k_-_19yo_step_daughter_gets_the_cum_on_her_ass",
    "https://www.xnxx.com/video-154x1j80/horny_teen_fucks_her_black_stepdad",
    "https://www.xnxx.com/video-tfgf58d/young_shy_couple_let_us_film_em_having_a_great_fuck",
    "https://www.xnxx.com/video-xiofn31/petite_blonde_teen_got_cum_inside_by_foreigner",
    "https://www.xnxx.com/video-1f28a5ab/sexo_a_escondidas_en_piscina_publica_con_jovencita_culona_-_pervteen",
    "https://www.xnxx.com/video-m1o9n4a/teenies_share_a_raging_cock_together",
    "https://www.xnxx.com/video-w1ofte7/pawg_teen_step_sister_fucks_little_step_brother",
    "https://www.xnxx.com/video-q27gxde/nasty_teen_orders_two_guys_to_double_penetrate_her",
    "https://www.xnxx.com/video-1bqd5b3a/que_rica_nena_casi_me_vengo_dentro_de_su_vaginita_cerrada_esta_tan_cerrada_que_se_siente_muy_rico_",
    "https://www.xnxx.com/video-15c1en97/virgin_teen_gets_pussy_licked_for_1st_ever_andregotbars",
    "https://www.xnxx.com/video-twckn5a/bishop_seduce_y.",
    "https://www.xnxx.com/video-98pmd80/skinny_teen_gets_rough_anal._made_him_cum_twice",
    "https://www.xnxx.com/video-srlkz9f/busty_muslim_teen_gets_fucked_like_there_s_no_tomorrow_-_teen_porn",
    "https://www.xnxx.com/video-1ewer77e/mama_cachonda_pillada_follando_con_jovencito_por_su_marido",
    "https://www.xnxx.com/video-mexn3d1/teen_cutie_fucked_by_her_old_stepdaddy",
    "https://www.xnxx.com/video-15ythj60/nerdy_teenie_takes_dick_deep_in_her_ass_hole_on_film",
    "https://www.xnxx.com/video-wk0znfd/stepbrother_fucks_pawg_teen_step_sister",
    "https://www.xnxx.com/video-1h5vv1d2/compilation_teens_orgasm",
    "https://www.xnxx.com/video-13odkn86/petite_teen_deflowered_by_step-uncle",
    "https://www.xnxx.com/video-rxuzz08/japanese_man_rails_tiny_teen_thai_pussy",
    "https://www.xnxx.com/video-ixas3aa/cute_teeny_lizi_fucks_young_handsome_guy",
    "https://www.xnxx.com/video-11yt0d0d/_-_",
    "https://www.xnxx.com/video-1egxdrd4/deutsches_amateur_paar_macht_einen_ffm_dreier",
    "https://www.xnxx.com/video-184donb0/sexy_amateur_vids",
    "https://www.xnxx.com/video-k3yx339/jess_joli_amateur_porn",
    "https://www.xnxx.com/video-13pvmv3f/_4_dx_59_-_",
    "https://www.xnxx.com/video-14rn5f54/she_sucks_and_fucks_her_stepdad_-_amateur_porn",
    "https://www.xnxx.com/video-qjwjvb4/amateur_real_milff",
    "https://www.xnxx.com/video-1gm874a3/amateur_pov_ffm_threesome_sex",
    "https://www.xnxx.com/video-cduij3c/thick_amateur",
    "https://www.xnxx.com/video-p9qvl46/amateur_latina_girlfriend_makes_sex_tape_of_her_first_time.",
    "https://www.xnxx.com/video-xs4vn4c/amateur_slut_likes_her_pussy_streched",
    "https://www.xnxx.com/video-rhpwv51/the_best_amateur_porn_on_the_planet",
    "https://www.xnxx.com/video-1hfjpg32/german_amateur_swinger_party_wo_frauen_in_den_mund_gespritzt_bekommen",
    "https://www.xnxx.com/video-1fzc9r07/forse_intendeva_da_un_altra_parte._vero_anale_amatoriale",
    "https://www.xnxx.com/video-1h0rsvf6/homemade_amateur",
    "https://www.xnxx.com/video-1dfo9x6f/german_teens_at_an_amateur_sex_party",
    "https://www.xnxx.com/video-1789nx1a/amateur_wife",
    "https://www.xnxx.com/video-1ddlbhd9/true_outkast_productions_1st_amateur",
    "https://www.xnxx.com/video-1gnqdyd6/real_love_real_sex_-_amateur_home_video",
    "https://www.xnxx.com/video-1h5tngc6/amateur_wife_emma._real_homemade_video_4k",
    "https://www.xnxx.com/video-fyioh6d/mormon_amateur_creampied_after_sucking_and_riding_cock_in_hd",
    "https://www.xnxx.com/video-16pyk872/german_fucks_his_18yo_step_daughter_-_amateur_homemade",
    "https://www.xnxx.com/video-1h86mj9d/amatur_threesome",
    "https://www.xnxx.com/video-xq6vz53/black_shaved_teen_creampie_amateur",
    "https://www.xnxx.com/video-1fzt9r69/_mdx_sexy_amateur_with_cowtoe_pussy",
    "https://www.xnxx.com/video-1brq536b/amateur_girlfriend_takes_huge_cumshots_in_public_compilation",
    "https://www.xnxx.com/video-11xw2v91/amateur_wife_gets_anal_cream_pie",
    "https://www.xnxx.com/video-1bkzkdb2/beautiful_18_year_old_amateur_neighbor_yelling_at_me_to_stop",
    "https://www.xnxx.com/video-xuxbvd5/the_best_amateur_porn_on_the_planet",
    "https://www.xnxx.com/video-z4l3pb0/amateur._lucky_fucks_twins",
    "https://www.xnxx.com/video-p9gcte5/amateur_couple_does_doggystyle",
    "https://www.xnxx.com/video-12iy9ne2/the_best_amateur_porn_on_the_planet",
    "https://www.xnxx.com/video-yd8i578/amateur_boxxx_-_japanese_cosplay_teen_masturbation",
    "https://www.xnxx.com/video-147ju138/_-_1",
    "https://www.xnxx.com/video-1c3c517a/real_amateur_couple_anal_creampie",
    "https://www.xnxx.com/video-ut3iv8b/grndes_tetas_romanticas_de_zenda_en_publico_chupando_polla",
    "https://www.xnxx.com/video-10w80f14/public_fucking_a_guy_in_pov_after_he_cums_a_lot_russians_speak_with_subtitles_",
    "https://www.xnxx.com/video-1fbby7b3/sexo_a_escondidas_con_jovencita_culona_y_pervertida_en_publico",
    "https://www.xnxx.com/video-1gvzoy98/public_fetish_sex_big_dick_creampie_fantasy",
    "https://www.xnxx.com/video-1bzmd338/being_freaky_in_public_compilation",
    "https://www.xnxx.com/video-18dhbv84/manoseada_por_un_desconocido_en_el_cine...me_mojo_el_cono_y_me_deje_masturbar_en_publico.",
    "https://www.xnxx.com/video-1fibfb36/public",
    "https://www.xnxx.com/video-tdk6b92/public_cum",
    "https://www.xnxx.com/video-cskn316/bitch_sucks_cock_in_shitter",
    "https://www.xnxx.com/video-156mgz17/big_black_dick_girl_can_t_take_the_whole_bbc_public_sex",
    "https://www.xnxx.com/video-jhxmdf7/japanese_slut_in_school_uniforn_banged_hard_in_the_public_subway",
    "https://www.xnxx.com/video-1frhldee/desconocido_me_descubrio_follandome_a_chorros_en_el_coche_-_via_publica",
    "https://www.xnxx.com/video-1fphynea/watch_this_beauty_moan_loudly_as_she_rides_him_hard_on_the_public_beach",
    "https://www.xnxx.com/video-13ryehdc/they_jerk_my_cock_in_public_in_the_fast_food_b_a_g",
    "https://www.xnxx.com/video-19ue09ca/public_park_risky_sex_with_huge_natural_tits_hailey_rose",
    "https://www.xnxx.com/video-1byw0n2d/nasty_stepsister_sucks_cum_from_stepbro_s_hard_11inch_bbc_in_public",
    "https://www.xnxx.com/video-1fk8b9f1/wife_s_first_public_dogging._wife_has_public_sex_on_the_street_with_a_stranger._stranger_joins_couple_in_outdoor_sex._threesome._mfm._cuckold.",
    "https://www.xnxx.com/video-ock8rf8/youngsters_fuck_on_public_bus",
    "https://www.xnxx.com/video-12scfdce/public_tease_for_step_daddy_she_want_sex_in_public_in_his_car",
    "https://www.xnxx.com/video-161ljh3d/my_co-worker_loves_to_fuck_in_public_part_2",
    "https://www.xnxx.com/video-10s0h98d/public_agent_ebony_supermodel_zaawaadi_fucks_a_big_fat_cock_deep_in_her_pink_pussy",
    "https://www.xnxx.com/video-19uv55e6/hot_babe_enjoys_risky_fuck_in_public",
    "https://www.xnxx.com/video-1aipwzcc/casada_com_rabo_na_janela_oferecendo_cu_pra_todos_na_rua_em_publico_",
    "https://www.xnxx.com/video-17x27d6f/espiando_a_chicas_en_el_bano_publico_de_centro_comercial",
    "https://www.xnxx.com/video-11u6wp18/obligo_a_mi_novio_a_que_me_chupe_la_vagina_en_publico_y_termino_corriendome_en_su_cara_y_mojandolo_todo_jaja",
    "https://www.xnxx.com/video-1g6bbtdd/follando_en_publico_en_un_auto_big_cum_face",
    "https://www.xnxx.com/video-1bys9tca/extreme_public_and_outdoor_sex_and_blowjobs_",
    "https://www.xnxx.com/video-1deurd97/follando_en_un_parque_publico_con_gente_pasando_no_nos_importa",
    "https://www.xnxx.com/video-l3g3v03/big_huge",
    "https://www.xnxx.com/video-lr1ufdd/big_ole_dick"
  ]
}' |
apify call maximedupre/xnxx-video-downloader --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=maximedupre/xnxx-video-downloader",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "XNXX Video Downloader",
        "description": "Extract direct media links and metadata from public XNXX video URLs or IDs. Get titles, durations, thumbnails, MP4/HLS format variants, source URLs, and fresh Apify dataset exports.",
        "version": "0.1",
        "x-build-id": "d7VgnGiyV38NVw5e1"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/maximedupre~xnxx-video-downloader/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-maximedupre-xnxx-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/maximedupre~xnxx-video-downloader/runs": {
            "post": {
                "operationId": "runs-sync-maximedupre-xnxx-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/maximedupre~xnxx-video-downloader/run-sync": {
            "post": {
                "operationId": "run-sync-maximedupre-xnxx-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "targets"
                ],
                "properties": {
                    "targets": {
                        "title": "XNXX videos",
                        "minItems": 1,
                        "maxItems": 100,
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Add one XNXX video URL or video ID per row.",
                        "items": {
                            "type": "string",
                            "minLength": 1
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
