@notasmurf/pornhubpremium-api
v0.0.0-alpha.7
Published
Application Phappable Interface for PornHub Premium
Downloads
2
Readme
Pornhub Premium API (Alpha)
Listen here you mankey lovin' gits as this poop nugget of an Application Phappable Interface is the best you are going to get for scraping PornHub Premium (at least in a worthwhile language). So pay attention.
Table of Contents
- Usage
- Authentication - Logging in.
- Videos - Searching the videos page.
- Video - Visiting a particular video.
- Search - Performing video/model search.
- Model - For searching specific models.
- Model Videos - View collection of model's videos.
- Coming Soon
- FAQs
Installation
npm i @notasmurf/pornhubpremium-api
Usage
Authentication
You'll first need to log in. For now, just physically log in and grab the cookie returned in the one of the subsequent page load calls. It's a long lasting token anyway. I am working to figure out regular auth.
Example
const ph = require('@notasmurf/pornhubpremium-api');
await ph.authenticate({
cookie: 'some-cookie',
});
Videos
So you want to get all the links on the main videos page so you can add them to your spank bank. I got your back. But just your back.
const pageVideos = await ph.videos({
video: {
premiumOnly: 1,
downloadOnly: 1,
},
categories: ['Red Head', 'Verified Amateurs'],
});
console.log(videos.getVideos());
/** Print
[
{
title: 'Mofos - Scott Nails Teaches His Step Daughter Angelica Cruz How To Bend Over For Ass Fucking',
url: 'https://www.pornhubpremium.com/view_video.php?viewkey=ph60d5d5a7a55fb',
duration: '34:14',
username: 'Lets Try Anal'
}
]
*/
// Handy function for returning all the spank bank categories on the sidebar menu.
conole.log(videos.getCategories());
/**
[
{
url: 'https://www.pornhubpremium.com/categories/babe',
name: 'Babe'
}
]
*/
Video
Now that you got your dirty list of naughtiables, let's get some download links going. Ol' @notasmurf
has GOT you bro.
const videos = await ph.videos({
video: {
premiumOnly: 1,
downloadOnly: 1,
},
categories: ['Red Head', 'Verified Amateurs'],
});
const vids = videos.getVideos({ page: 1 }); // Options not required. Defaults to 1.
const video = await ph.video(vids[0].url);
// Get all downloadable video links (if present).
console.log(video.getDownloads());
/** Prints
[
{
definition: 'HD 1080p',
url: 'https://ed.phprcdn.com/videos/202106/25/390180751/1080P_4000K_390180751.mp4?validfrom=1625441105&validto=1625448305&rate=50000k&burst=50000k&ip=71.241.248.52&ipa=71.241.248.52&hash=Z5O1%2B%2FQdGD4cvb5Ll3PByRg04bc%3D'
}
]
*/
// Print the models associated with the video.
console.log(video.getModels());
/** Prints
[
{
name: 'Bethany Benz',
url: 'https://www.pornhubpremium.com/pornstar/bethany-benz'
}
]
*/
Search
Okay, so now for the good stuff. You can search one of two ways currently. See below for the details.
For Models:
const models = await ph.search('Abby', 'pornstars', { page: 1 }); // Options not required. Defaults to 1.
console.log(models.getModels());
/** Prints
[
{ rank: '8041', name: 'Abby Lane', videos: '12 Videos' },
{ rank: '9762', name: 'Abby Lexus', videos: '4 Videos' },
{ rank: '15018', name: "Abby O'Toole", videos: '3 Videos' },
{ rank: '14856', name: 'Abbie Jordyn', videos: '3 Videos' },
{ rank: '1697', name: 'Abby Cross', videos: '130 Videos' }
]
*/
For Videos:
const models = await ph.search('Redhead', 'video', { page: 1 }); // Options not required. Defaults to 1.
console.log(models.getModels());
/** Prints
[
{
title: 'HOT REDHEAD STEPDAUGHTER LACY LENNON SQUIRTS OUT MY ACCIDENTAL CREAMPIE',
url: 'https://www.pornhubpremium.com/view_video.php?viewkey=ph5c0c89e719f50',
duration: '44:26',
username: 'Spank Monster'
}
]
*/
Model
So now that you've just used my tool for the sole purpose of querying for asian pornstars with big tits, let's use this tool to scrape your oriental honey's personal page.
const model = await ph.model('https://www.pornhubpremium.com/pornstar/britney-amber');
const details = model.getDetailedInfo();
console.log(details);
/** Prints:
{
relationshipStatus: 'Single',
interestedIn: 'Guys and Girls',
cityAndCountry: 'Southern California, US',
pornstarProfileViews: '35,568,683',
careerStatus: 'Active',
careerStartAndEnd: '2008 to Present',
gender: 'Female',
birthPlace: 'Banning, California, United States of America',
starSign: 'Scorpio',
measurements: '36D-24-34',
height: '5 ft 5 in (165 cm)',
weight: '115 lbs (52 kg)',
ethnicity: 'White',
hairColor: 'Blonde',
fakeBoobs: 'Yes',
tattoos: 'Yes',
piercings: 'Yes',
interestsAndHobbies: 'Archery and Bowhunting',
hometown: 'Southern California',
profileViews: '21,998,089',
videosWatched: '51',
}
*/
const videos = model.getVideos(); // ONLY shows videos on the immediate page.
/** Prints
[
{
title: 'Kimberly Climbs the Big Black Dick Mountain for the First Time',
url: 'https://www.pornhubpremium.com/view_video.php?viewkey=ph60df0ed563c21',
duration: '22:52',
username: 'Interracial Pass'
}
]
*/
Model Videos
Okay, so each model page has like...10 filthy video links on it. You want even more. You got it baby bird.
const model = await ph.model('https://www.pornhubpremium.com/pornstar/britney-amber');
// Use the following to get a complete list of
const moreVideosUrl = model.getMoreVideosUrl();
console.log(moreVideosUrl);
// Prints: https://www.pornhubpremium.com/pornstar/britney-amber/videos
const morePremiumVideosUrl = model.getMorePremiumVideosUrl();
console.log(morePremiumVideosUrl);
// Prints: https://www.pornhubpremium.com/pornstar/britney-amber/videos?premium=1
const modelVideos = await ph.modelVieos(morePremiumVideosUrl, { page: 1 }); // Options not required. Defaults to 1.
console.log(modelVideos);
/** Prints:
[
{
title: 'MileHigh - Two Horny Lesbians Britney Amber And Ivy Lebelle Love Anal Play',
url: 'https://www.pornhubpremium.com/view_video.php?viewkey=ph5eaac125892e4',
duration: '29:27',
username: 'Sweetheart Video'
}
]
*/
COMING SOON
- More search features
- Favorites page
- A better readme
- If you want more, make a request on the Issues page.
FAQs:
1) When will this package be ready?
I'll move it out of alpha once I have finished enough of the core features. I don't expect to make any major breaking changes though, although there will of course be bugs, so go ahead and give it a whirl.
2) Will this thing be production ready after alpha?
Why...why the hell would you need that...
3) How do I contribute?
Make a PR. Why is this always a FAQ question? Git has one purpose.
4) This is PornHub. Can we hire you?
Tell you what. If you have the balls to make a meaningful PR to this repo, I will abso-fucking-lutely apply.