# Pornhub Scraper (`hello.datawizards/pornhub-scraper`) Actor

Effortlessly scrape public Pornhub data for creators, researchers, and marketers with our secure, efficient, and feature-rich scraping tool.

- **URL**: https://apify.com/hello.datawizards/pornhub-scraper.md
- **Developed by:** [datawizards](https://apify.com/hello.datawizards) (community)
- **Categories:** Automation, Lead generation, Videos
- **Stats:** 101 total users, 3 monthly users, 100.0% runs succeeded, 2 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## PornHub Scraper Readme

### About PornHub Scraper

**Website Link:** <https://en.wikipedia.org/wiki/Pornhub>

Pornhub is a Canadian-owned internet pornography video-sharing platform and part of the adult entertainment conglomerate Aylo, is the world's most-visited adult website and the 16th-most-visited overall as of August 2024. It offers a vast library of professional and amateur videos, user uploads, and an annual Pornhub Awards to honor creators.

Our  PornHub Scraper is a cutting-edge tool designed to assist content creators, researchers, and marketers in accessing publicly available data from PornHub profiles efficiently and securely. Whether you're analyzing metrics, organizing media, or automating repetitive tasks, this tool is your go-to solution for navigating the PornHub ecosystem.

***

### PornHub Scraper

PornHub Scraper provides the search result of any search\_queries and extracts data efficiently. This tool is designed to extract vital data such as:

- **Title**
- **Url**
- **Views**
- **Thumbs\_up**
- **Duration**
- **Channel\_url**

***

#### Features:

- **Proxy-Free Operation** No need to set up or pay for proxies, making the tool easy to use and cost- efficient
- **Search by Query**
- **Efficient Data Extraction** Fetch profile bios, follower counts, and other relevant metrics.
- **Media Organization** Automate categorizing photos and videos url.
- **In-Depth Scraping:** Obtain detailed data from specific username.
- **User -Friendly**

***

### Example Usage

#### Sample Input:

```json
{
    "itemLimit": 11,
    "max": "30",
    "min": "10",
    "production": "professional",
    "proxyConfiguration": {
      "useApifyProxy": true,
      "apifyProxyGroups": []
    },
    "search_queries": [
      "indian",
      "bigtits",
      "realstate"
    ]
  }
```

#### Output Format:

```json
{
  "query": "realstate",
  "title": "PropertySex Hot Wife Amazing Blowjob and Sex with Door to Door Real Estate Agent",
  "url": "https://www.pornhub.com/view_video.php?viewkey=642ca497646af",
  "views": "1.3M",
  "thumbs_up": "91%",
  "duration": "13:00",
  "username": "Property Sex",
  "channel_url": "https://www.pornhub.com/channels/property-sex"
}

```

***

### 🔍 Why Choose Our Scraper?

- **Automate tasks** to save time and effort.
- **Gather insights** from publicly available data to boost your content strategy.
- Enjoy **seamless scraping** with **no proxy requirements** and **low costs**

***

***

### Disclaimer

Ensure compliance with PornHub  terms of service and local data privacy laws. This tool is intended for ethical and lawful use only.
Please note that **PornHub contains 18+ and adult content**, and this scraper may access such materials. Use responsibly and in accordance with applicable laws and guidelines.

***

### Your Feedback:

Our scrapers are always working to improve performance. If you’ve got any technical feedback, suggestions, or improvements for PornHub Scrapers, or if you have found any issues or bugs, please create an issue in the Actor’s Issues tab in the Apify Console.

For further assistance or support, email us at **hello.datawizard@gmail.com**.

***

#### Thank You for Using Our PornHub Scraper!

# Actor input Schema

## `search_queries` (type: `array`):

One or more queries where the crawler will start.

## `itemLimit` (type: `integer`):

Specifies the maximum number of items to process.

## `production` (type: `string`):

Select production type

## `min` (type: `string`):

Select minimum duration of video

## `max` (type: `string`):

Select miximum duration of video

## `proxyConfiguration` (type: `object`):

Specifies proxy servers that will be used by the scraper in order to hide its origin.

## Actor input object example

```json
{
  "search_queries": [
    "Threesome"
  ],
  "itemLimit": 10,
  "production": "all",
  "min": "none",
  "max": "none",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "search_queries": [
        "Threesome"
    ],
    "itemLimit": 10,
    "production": "all",
    "min": "none",
    "max": "none",
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("hello.datawizards/pornhub-scraper").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 = {
    "search_queries": ["Threesome"],
    "itemLimit": 10,
    "production": "all",
    "min": "none",
    "max": "none",
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("hello.datawizards/pornhub-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "search_queries": [
    "Threesome"
  ],
  "itemLimit": 10,
  "production": "all",
  "min": "none",
  "max": "none",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call hello.datawizards/pornhub-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hello.datawizards/pornhub-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/p0fnqsQpWPWB6b8AG/builds/dF3aXluafNTHnZorD/openapi.json
