Movies and TV Shows

Description: Provides information about movies and TV shows including cast, ratings, reviews, and where to watch.

API Response Structure:

{
  "items": [
    {
      "title": "Movie Title",
      "date": "2023",
      "rating": "PG-13",
      "duration": "2h 30m",
      "genre": ["Action", "Adventure"],
      "rating": {
        "score": 8.5,
        "votes": "250,000"
      },
      "whereToWatch": [
        {
          "platform": "Netflix",
          "type": "Streaming"
        }
      ]
    }
  ],
  "type": "instantAnswers",
  "configType": "moviesAndTvShows"
}

Fields:

  • items (array): List of movies/shows

    • title (string): Title

    • date (string): Release date/year

    • rating (string): Content rating

    • duration (string): Length

    • genre (array): List of genres

    • rating (object): Audience ratings

      • score (number): Average rating

      • votes (string): Number of votes

    • whereToWatch (array): Availability

      • platform (string): Service name

      • type (string): Viewing option

  • type (string): Always "instantAnswers"

  • configType (string): Always "moviesAndTvShows"