Discover/IAFD API
live

IAFD APIiafd.com

Access IAFD performer bios, filmographies, awards, movie cast lists, and trending performers via a structured REST API with 7 endpoints.

Endpoint health
verified 3d ago
get_top_performers
search
get_movie_details
get_performer_credits
get_born_today
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the IAFD 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.

Try it
Search keyword (performer name or movie title)
api.parse.bot/scraper/c71e1711-c72e-4d9a-aed5-37abe2370682/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c71e1711-c72e-4d9a-aed5-37abe2370682/search?query=Sasha+Grey' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace iafd-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.iafd_internet_adult_film_database_api import IAFD, PerformerSummary, Performer, Movie, Credit, Award

iafd = IAFD(api_key="YOUR_API_KEY")

# Search for performers by name
for result in iafd.performersummaries.search(query="Sasha Grey"):
    print(result.name, result.aka, result.url)

# Get full biographical details for a performer
detail = iafd.performers.get(id="054f5d3f-9395-45ce-a550-558896fb2107")
print(detail.name, detail.bio.birthday, detail.vital_stats.height)

# Navigate from a search result to full details
p = iafd.performersummary(id="054f5d3f-9395-45ce-a550-558896fb2107")
full = p.details()
print(full.name, full.bio.birthplace, full.vital_stats.ethnicity)

# List a performer's filmography
for credit in p.credits.list():
    print(credit.title, credit.year, credit.distributor)

# List a performer's awards
for award in p.awards.list():
    print(award.organization, award.status, award.raw_text)

# Get trending performers
for top in iafd.performersummaries.top():
    print(top.name, top.id)

# Get performers born today
for birthday in iafd.performersummaries.born_today():
    print(birthday.name, birthday.url)

# Get movie details with cast
movie = iafd.movies.get(id="707e327c-64e2-42d7-8e4b-4f01f4a6213a")
print(movie.title, movie.info.director, movie.info.release_date)
for cast_member in movie.performers:
    print(cast_member.name, cast_member.url)
All endpoints · 7 totalmissing one? ·

Full-text search across performers and movies on IAFD. The query matches performer names (including aliases) and movie titles. Returns two arrays: performers with photo and alias info, and movies with year and distributor. No pagination — all matches are returned in a single response.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (performer name or movie title)
Response
{
  "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": "707e327c-64e2-42d7-8e4b-4f01f4a6213a",
          "url": "https://www.iafd.com/title.rme/id=707e327c-64e2-42d7-8e4b-4f01f4a6213a",
          "year": "2006",
          "title": "2952 Hillary Scott and Sasha Grey Strip Tease",
          "distributor": "suze.net"
        }
      ],
      "performers": [
        {
          "id": "054f5d3f-9395-45ce-a550-558896fb2107",
          "aka": "Sasha Gray, Sascha Grey, Sacha Grey",
          "url": "https://www.iafd.com/person.rme/id=054f5d3f-9395-45ce-a550-558896fb2107",
          "name": "Sasha Grey",
          "photo": "https://www.iafd.com/graphics/headshots/sashagrey_f_0525.jpg"
        }
      ]
    },
    "status": "success"
  }
}

About the IAFD API

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.

Reliability & maintenanceVerified

The IAFD API is a managed, monitored endpoint for iafd.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when iafd.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official iafd.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a performer profile page that combines bio fields from get_performer_details with a chronological credit list from get_performer_credits
  • Populate an awards tracker that filters get_performer_awards results 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 aka field from search) to resolve alternative stage name searches
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does IAFD have an official developer API?+
No. IAFD does not publish a public developer API or documented data access program. This Parse API provides the structured access that IAFD itself does not offer.
What does `get_performer_awards` return and how is status distinguished?+
Each object in the 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?+
The endpoint currently returns a 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.
Is scene-level or individual scene metadata available through this API?+
Not currently. The API covers movie-level metadata (director, runtime, studio, cast list) and credit-level notes attached to a performer's filmography entry. Individual scene breakdowns, scene partners, or scene timestamps are not exposed. You can fork this API on Parse and revise it to add scene-level parsing if that data is present on the source page.
How fresh is the data returned by the performer and movie endpoints?+
The API reflects what is currently published on IAFD at the time of the request. IAFD is a community-maintained database, so coverage and update frequency vary by title and performer. Newly added credits or award entries appear once IAFD's own records are updated.
Page content last updated . Spec covers 7 endpoints from iafd.com.
Related APIs in EntertainmentSee all →
filmaffinity.com API
Search FilmAffinity's film database by title, director, genre, year, and more. Retrieve detailed movie information including cast, crew, synopsis, ratings, and user reviews. Access top-rated lists, box office rankings, theatrical and streaming releases, and full filmographies for cast and crew members.
imdb.com API
Search and retrieve comprehensive IMDb movie information including ratings, genres, cast, crew, and box office data in one place. Get full cast and crew details alongside plot summaries and financial insights for any movie title.
tmdb.org API
Search for movies and TV shows to discover details like cast, crew, reviews, images, videos, and where to watch them. Get information about actors, browse trending and popular titles, and access comprehensive metadata for entertainment planning.
concertarchives.org API
Search for performers and their concert history to discover performance details, repertoire, and event information from Concert Archives. Find specific concerts, view performer profiles, and explore what artists have performed and when.
editorial.rottentomatoes.com API
Search for movies and TV shows, browse ratings and reviews from critics and audiences, and discover celebrity filmographies and entertainment news. Get detailed information about films, shows, and entertainment professionals all in one place.
filmfreeway.com API
Search and discover film festivals worldwide with detailed information including deadlines, submission categories, fees, rules, and organizer contacts. Access comprehensive festival profiles, photos, and grant opportunities listed on FilmFreeway.
fandango.com API
Search for movies and retrieve nearby theater listings with showtimes by ZIP code and date, plus showtimes for a specific movie at nearby theaters.
the-numbers.com API
Search and discover comprehensive movie industry data including box office statistics, cast and crew information, and all-time records directly from the-numbers.com. Track daily box office charts and retrieve detailed movie information to stay informed about film performance and historical cinema records.