Skip to content

Parents Guide Data Dictionary

Fresh

The Parents Guide dataset provides content advisory information for IMDb titles, covering five categories of potentially sensitive content. This data helps parents, educators, and content platforms make informed decisions about age-appropriateness.


Structure

Each title's Parents Guide record contains a parentsGuide array, where each element covers one of the five content categories.

FieldTypeDescription
titleIdstringIMDb title ID
parentsGuidearrayArray of category assessments

Per-Category Fields

FieldTypeDescription
categorystringContent category name
severitystringOverall severity level
votesobjectVote breakdown by severity level
parentsGuideItemsarrayIndividual descriptive items (advanced version only)

Content Categories

Category ValueDisplay Name
sexNuditySex and Nudity
violenceGoreViolence and Gore
profanityProfanity
alcoholDrugsSmokingAlcohol, Drugs, and Smoking
frighteningIntenseScenesFrightening and Intense Scenes

Severity Levels

The overall severity for each category is determined by the median vote across all user contributions:

ValueMeaning
NoneThe content is absent or negligible
MildPresent but not gratuitous
ModerateClearly present; may be of concern to some
SevereSignificant or graphic presence

Votes Object

The votes object contains vote counts for each severity level:

FieldTypeDescription
noneVotesintegerUsers who rated this category as None
mildVotesintegerUsers who rated this category as Mild
moderateVotesintegerUsers who rated this category as Moderate
severeVotesintegerUsers who rated this category as Severe

Full JSON Example

json
{
  "titleId": "tt0068646",
  "parentsGuide": [
    {
      "category": "violenceGore",
      "severity": "Severe",
      "votes": {
        "noneVotes": 12,
        "mildVotes": 89,
        "moderateVotes": 234,
        "severeVotes": 891
      },
      "parentsGuideItems": [
        "Several scenes of gun violence, including close-range shootings.",
        "A man is strangled with a wire in a prolonged scene.",
        "A horse's severed head is shown in a bed, with some blood."
      ]
    },
    {
      "category": "sexNudity",
      "severity": "Mild",
      "votes": {
        "noneVotes": 201,
        "mildVotes": 445,
        "moderateVotes": 98,
        "severeVotes": 12
      },
      "parentsGuideItems": [
        "Brief partial nudity in a non-sexual context.",
        "Some kissing and mild romantic content."
      ]
    },
    {
      "category": "profanity",
      "severity": "Mild",
      "votes": {
        "noneVotes": 145,
        "mildVotes": 512,
        "moderateVotes": 67,
        "severeVotes": 8
      }
    },
    {
      "category": "alcoholDrugsSmoking",
      "severity": "Moderate",
      "votes": {
        "noneVotes": 34,
        "mildVotes": 189,
        "moderateVotes": 367,
        "severeVotes": 45
      },
      "parentsGuideItems": [
        "Characters drink wine and spirits throughout the film.",
        "Smoking is depicted by multiple characters."
      ]
    },
    {
      "category": "frighteningIntenseScenes",
      "severity": "Moderate",
      "votes": {
        "noneVotes": 67,
        "mildVotes": 234,
        "moderateVotes": 489,
        "severeVotes": 156
      }
    }
  ]
}

Standard vs. Advanced Version

Two versions of the Parents Guide dataset are available:

VersionparentsGuideItemsUse Case
StandardNot includedSeverity level only — suitable for ratings displays
AdvancedIncludedFull descriptive text — suitable for detailed content warnings

The parentsGuideItems array contains individual text descriptions written by IMDb users. This field is only present in the advanced version of the dataset. If you only need severity levels and vote counts, use the standard version to reduce data volume.

IMDb API Documentation — Internal Reference