IMDb-API Name API

People (actors, directors, writers) information and awards.

Operations 2

GET /{lang}/API/Name/{apiKey}/{id} Get Person #
GET /{lang}/API/NameAwards/{apiKey}/{id} Get Person Awards #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/imdb-api-name-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

imdb-api-name-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IMDb-API (TV-API) External Name API
  description: 'Community web service (operated under the IMDb-API / TV-API brand) for receiving

    movie, TV series and cast information in JSON. Aggregates data from IMDb,

    TheMovieDb, Wikipedia, Rotten Tomatoes, Metacritic, TheTVDB, FilmAffinity and

    YouTube. Originally hosted at imdb-api.com and migrated to tv-api.com. Not an

    official IMDb / Amazon product.

    '
  version: 1.0.0
  contact:
    name: IMDb-API
    url: https://tv-api.com/
  license:
    name: Commercial / Free Tier
    url: https://tv-api.com/pricing
servers:
- url: https://tv-api.com
  description: Production (current)
- url: https://imdb-api.com
  description: Legacy host (redirects to tv-api.com)
security:
- ApiKeyInPath: []
tags:
- name: Name
  description: People (actors, directors, writers) information and awards.
paths:
  /{lang}/API/Name/{apiKey}/{id}:
    get:
      tags:
      - Name
      operationId: getName
      summary: Get Person
      description: Retrieve actor, director or writer information by IMDb name id (nm-format).
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - name: id
        in: path
        required: true
        schema:
          type: string
          pattern: ^nm\\d+$
      responses:
        '200':
          description: Name data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NameData'
  /{lang}/API/NameAwards/{apiKey}/{id}:
    get:
      tags:
      - Name
      operationId: getNameAwards
      summary: Get Person Awards
      description: Retrieve awards for a person by IMDb name id.
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - name: id
        in: path
        required: true
        schema:
          type: string
          pattern: ^nm\\d+$
      responses:
        '200':
          description: Name award data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NameAwardData'
components:
  schemas:
    NameAwardData:
      type: object
      properties:
        imDbId:
          type: string
        name:
          type: string
        items:
          type: array
          items:
            type: object
            properties:
              eventName:
                type: string
              eventYear:
                type: string
              awards:
                type: array
        errorMessage:
          type: string
    NameData:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        role:
          type: string
        image:
          type: string
          format: uri
        summary:
          type: string
        birthDate:
          type: string
        deathDate:
          type: string
        awards:
          type: string
        height:
          type: string
        knownFor:
          type: array
          items:
            $ref: '#/components/schemas/SimilarShort'
        castMovies:
          type: array
          items:
            type: object
        errorMessage:
          type: string
    SimilarShort:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        image:
          type: string
          format: uri
        imDbRating:
          type: string
  parameters:
    ApiKey:
      name: apiKey
      in: path
      required: true
      description: Account API key.
      schema:
        type: string
    Lang:
      name: lang
      in: path
      required: true
      description: Two-letter language code (e.g. en, fr, de, es, ru). Use 'en' for default.
      schema:
        type: string
        default: en
  securitySchemes:
    ApiKeyInPath:
      type: apiKey
      in: query
      name: apiKey
      description: API key issued at https://tv-api.com after sign-up. Embedded directly in the request path for most endpoints.