iafd.com APIiafd.com ↗
Access IAFD performer bios, filmographies, awards, movie cast lists, and trending performers via a structured REST API with 7 endpoints.
curl -X GET 'https://api.parse.bot/scraper/c71e1711-c72e-4d9a-aed5-37abe2370682/search?query=%3Cperformer+name+or+movie+title%3E' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for performers and movies by name or title. Returns matching performers with aliases and movies with year and distributor information.
| Param | Type | Description |
|---|---|---|
| queryrequired | string | Search keyword (performer name or movie title) |
{
"type": "object",
"fields": {
"movies": "array of movie objects with title, id, url, year, and distributor fields",
"performers": "array of performer objects with name, id, url, photo, and aka fields"
},
"sample": {
"data": {
"movies": [
{
"id": "0e98fd43-3781-4006-8b17-9bbbdeac0236",
"url": "https://www.iafd.com/title.rme/id=0e98fd43-3781-4006-8b17-9bbbdeac0236",
"year": "2016",
"title": "2 Chicks Same Time 21221",
"distributor": "naughtyamerica.com"
}
],
"performers": [
{
"id": "f0a9a21a-0203-4bfb-abe2-30a2c5d5ad8f",
"aka": "Adriana Chechick, Adrianna Chechik, Adriana Checkik (erotiquelive.com)",
"url": "https://www.iafd.com/person.rme/id=f0a9a21a-0203-4bfb-abe2-30a2c5d5ad8f",
"name": "Adriana Chechik",
"photo": "https://www.iafd.com/graphics/headshots/adrianachechik_f_0454.jpg"
}
]
},
"status": "success"
}
}About the iafd.com API
The IAFD API provides structured access to the Internet Adult Film Database across 7 endpoints, covering performer biographies, full filmographies, award histories, and movie metadata including cast lists. The get_performer_details endpoint returns fields like birthday, birthplace, ethnicity, height, weight, and years active, while get_movie_details returns director, studio, runtime, release date, and a full performer roster for any given title.
Performer Data
The search endpoint accepts a query string and returns two arrays: performers (with name, id, url, photo, and aka fields) and movies (with title, id, url, year, and distributor). Use the returned id values as inputs to the detail endpoints. get_performer_details returns a bio object (birthday, birthplace, gender, years_active) and a vital_stats object (ethnicity, height, weight, measurements) alongside the performer's name and headshot URL.
Filmography and Awards
get_performer_credits returns an array of credit objects for a given performer UUID, each including title, year, distributor, url, and a notes field that captures role or scene-level annotations. get_performer_awards returns an awards array with organization name, year, award status (Winner or Nominee), associated movie title, and a raw_text field for the full award string as it appears on IAFD.
Movie Details and Discovery
get_movie_details accepts a movie UUID from search results or performer credits and returns an info object covering director, studio, distributor, runtime in minutes, and release date, plus a performers array listing all billed cast members with their IDs and profile URLs. For discovery, get_top_performers returns a ranked list of top actresses by page views pulled from the IAFD homepage, and get_born_today returns performers whose birthday matches the current calendar date.
- Build a performer profile page that combines bio fields from
get_performer_detailswith a chronological credit list fromget_performer_credits - Populate an awards tracker that filters
get_performer_awardsresults by organization or status (Winner vs. Nominee) - Construct a movie detail page showing director, studio, runtime, and full cast using
get_movie_details - Power a 'born today' widget for a fan or editorial site using
get_born_today - Build a trending performers leaderboard ranked by page-view data from
get_top_performers - Cross-reference performer filmographies with movie metadata to map co-star relationships across titles
- Index performer aliases (the
akafield from search) to resolve alternative stage name searches
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does IAFD have an official developer API?+
What does `get_performer_awards` return and how is status distinguished?+
awards array includes the organization name, year, a status field that is either 'Winner' or 'Nominee', the associated movie title, and a raw_text field containing the full award string as it appears on IAFD. There is no additional filter parameter — you receive all recorded awards and nominations for the performer in a single call.Does `get_top_performers` return both male and female performers?+
top_actresses array. Male performers are not included in the current response shape. You can fork this API on Parse and revise it to add a top actors endpoint if you need rankings across genders.