IMDb-API External API

Wikipedia, external sites, reviews, FAQ and other ancillary data.

Operations 7

GET /{lang}/API/Wikipedia/{apiKey}/{id} Get Wikipedia Plot #
GET /{lang}/API/ExternalSites/{apiKey}/{id} Get External Sites #
GET /{lang}/API/Reviews/{apiKey}/{id} Get User Reviews #
GET /{lang}/API/MetacriticReviews/{apiKey}/{id} Get Metacritic Reviews #
GET /{lang}/API/FAQ/{apiKey}/{id} Get FAQ #
GET /{lang}/API/Company/{apiKey}/{id} Get Company #
GET /{lang}/API/Keyword/{apiKey}/{id} Get Keyword #

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-external-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-external-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IMDb-API (TV-API) External 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: External
  description: Wikipedia, external sites, reviews, FAQ and other ancillary data.
paths:
  /{lang}/API/Wikipedia/{apiKey}/{id}:
    get:
      tags:
      - External
      operationId: getWikipedia
      summary: Get Wikipedia Plot
      description: Retrieve Wikipedia plot summary (PlainText and Html).
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - $ref: '#/components/parameters/ImdbId'
      responses:
        '200':
          description: Wikipedia data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WikipediaData'
  /{lang}/API/ExternalSites/{apiKey}/{id}:
    get:
      tags:
      - External
      operationId: getExternalSites
      summary: Get External Sites
      description: Retrieve cross-platform identifiers and URLs for a title.
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - $ref: '#/components/parameters/ImdbId'
      responses:
        '200':
          description: External site data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalSiteData'
  /{lang}/API/Reviews/{apiKey}/{id}:
    get:
      tags:
      - External
      operationId: getReviews
      summary: Get User Reviews
      description: Retrieve user reviews for a title.
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - $ref: '#/components/parameters/ImdbId'
      responses:
        '200':
          description: Review data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewData'
  /{lang}/API/MetacriticReviews/{apiKey}/{id}:
    get:
      tags:
      - External
      operationId: getMetacriticReviews
      summary: Get Metacritic Reviews
      description: Retrieve Metacritic critic reviews for a title.
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - $ref: '#/components/parameters/ImdbId'
      responses:
        '200':
          description: Metacritic review data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetacriticReviewData'
  /{lang}/API/FAQ/{apiKey}/{id}:
    get:
      tags:
      - External
      operationId: getFAQ
      summary: Get FAQ
      description: Retrieve frequently asked questions for a title.
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - $ref: '#/components/parameters/ImdbId'
      responses:
        '200':
          description: FAQ data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FAQData'
  /{lang}/API/Company/{apiKey}/{id}:
    get:
      tags:
      - External
      operationId: getCompany
      summary: Get Company
      description: Retrieve production company information and titles by IMDb company id (co-format).
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - name: id
        in: path
        required: true
        schema:
          type: string
          pattern: ^co\\d+$
      responses:
        '200':
          description: Company data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyData'
  /{lang}/API/Keyword/{apiKey}/{id}:
    get:
      tags:
      - External
      operationId: getKeyword
      summary: Get Keyword
      description: Retrieve titles related to a keyword.
      parameters:
      - $ref: '#/components/parameters/Lang'
      - $ref: '#/components/parameters/ApiKey'
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Keyword data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KeywordData'
components:
  schemas:
    MetacriticReviewData:
      type: object
      properties:
        imDbId:
          type: string
        title:
          type: string
        items:
          type: array
          items:
            type: object
            properties:
              username:
                type: string
              date:
                type: string
              rate:
                type: string
              title:
                type: string
              content:
                type: string
        errorMessage:
          type: string
    KeywordData:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        items:
          type: array
          items:
            $ref: '#/components/schemas/SearchResult'
        errorMessage:
          type: string
    FAQData:
      type: object
      properties:
        imDbId:
          type: string
        title:
          type: string
        items:
          type: array
          items:
            type: object
            properties:
              question:
                type: string
              answer:
                type: string
        errorMessage:
          type: string
    ReviewData:
      type: object
      properties:
        imDbId:
          type: string
        title:
          type: string
        items:
          type: array
          items:
            type: object
            properties:
              username:
                type: string
              userUrl:
                type: string
                format: uri
              reviewLink:
                type: string
                format: uri
              warningSpoilers:
                type: boolean
              date:
                type: string
              rate:
                type: string
              helpful:
                type: string
              title:
                type: string
              content:
                type: string
        errorMessage:
          type: string
    CompanyData:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        items:
          type: array
          items:
            $ref: '#/components/schemas/SearchResult'
        errorMessage:
          type: string
    WikipediaData:
      type: object
      properties:
        imDbId:
          type: string
        title:
          type: string
        url:
          type: string
          format: uri
        language:
          type: string
        plotShort:
          type: object
          properties:
            plainText:
              type: string
            html:
              type: string
        plotFull:
          type: object
          properties:
            plainText:
              type: string
            html:
              type: string
        errorMessage:
          type: string
    ExternalSiteData:
      type: object
      properties:
        imDbId:
          type: string
        title:
          type: string
        items:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              id:
                type: string
              url:
                type: string
                format: uri
        errorMessage:
          type: string
    SearchResult:
      type: object
      properties:
        id:
          type: string
        resultType:
          type: string
        image:
          type: string
          format: uri
        title:
          type: string
        description:
          type: string
  parameters:
    ApiKey:
      name: apiKey
      in: path
      required: true
      description: Account API key.
      schema:
        type: string
    ImdbId:
      name: id
      in: path
      required: true
      description: IMDb title id in tt-format (e.g. tt1375666).
      schema:
        type: string
        pattern: ^tt\\d+$
    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.