Skip to content

Names Data Dictionary

Fresh

The Names dataset contains records for every person in the IMDb database — actors, directors, writers, producers, composers, cinematographers, and all other credited crew. One JSON Lines record per person.

Top-Level Fields

FieldTypeDescription
nameIdstringIMDb name ID (format: nm + 7+ digits)
remappedTostringIf this ID has been merged into another, the canonical ID
nameobjectPerson's full name
awardsarrayAward nominations and wins
deathobjectDeath information (omitted if person is living)
filmographyobjectAll credits organized by role type
knownForarrayCurated list of most notable titles
trademarksarrayKnown phrases, mannerisms, or stylistic signatures

nameId

json
{
  "nameId": "nm0000020"
}

name

json
{
  "name": {
    "nameText": "Henry Fonda",
    "nameTextSortable": "Fonda, Henry"
  }
}

awards

Array of award nominations. Each entry represents one nomination or win.

json
{
  "awards": [
    {
      "year": 1982,
      "awardName": "Academy Awards",
      "category": "Best Actor in a Leading Role",
      "titles": ["tt0082781"],
      "winner": true,
      "event": "Oscars"
    },
    {
      "year": 1958,
      "awardName": "Academy Awards",
      "category": "Best Actor in a Leading Role",
      "titles": ["tt0050083"],
      "winner": false,
      "event": "Oscars"
    }
  ]
}
FieldDescription
yearYear of the award ceremony
awardNameFull name of the award
categorySpecific category within the award
titlesArray of title IDs associated with the nomination
winnertrue if the nomination resulted in a win
eventShort name of the award ceremony

death

Only present for deceased individuals. Omitted entirely for living persons.

json
{
  "death": {
    "deathStatus": "DEAD",
    "deathDate": {
      "year": 1982,
      "month": 8,
      "day": 12
    },
    "deathCause": "Cancer",
    "deathLocation": "Los Angeles, California, USA"
  }
}

filmography

Contains all credits for the person, divided by role type.

cast

json
{
  "filmography": {
    "cast": [
      {
        "titleId": "tt0050083",
        "roles": [
          {
            "character": "Juror 8",
            "characterId": "ch0000000"
          }
        ],
        "billing": 1,
        "attributes": []
      },
      {
        "titleId": "tt0082781",
        "roles": [
          {
            "character": "Norman Thayer Jr.",
            "characterId": "ch0000001"
          }
        ],
        "billing": 1,
        "attributes": ["uncredited"]
      }
    ]
  }
}

crew

json
{
  "filmography": {
    "crew": [
      {
        "titleId": "tt0050083",
        "category": "producer",
        "jobs": ["Executive Producer"],
        "attributes": []
      }
    ]
  }
}
FieldDescription
titleIdIMDb title ID for the credited work
rolesArray of character roles (cast only)
characterCharacter name
characterIdIMDb character identifier
billingBilling position in the credits
attributesSpecial credit notes, e.g., "uncredited", "voice"
categoryJob category for crew (e.g., "director", "writer")
jobsSpecific job titles within the category

knownFor

A curated list of the person's most notable titles, as determined by IMDb editorial.

json
{
  "knownFor": [
    {
      "titleId": "tt0050083",
      "category": "actor"
    },
    {
      "titleId": "tt0082781",
      "category": "actor"
    }
  ]
}

trademarks

Distinctive phrases, mannerisms, or recurring stylistic elements associated with the person.

json
{
  "trademarks": [
    "Known for his laconic acting style and understated emotional depth.",
    "Frequently played morally upright characters facing ethical dilemmas."
  ]
}

IMDb API Documentation — Internal Reference