Updated on September 14, 2023

Movie structure

The Monolito Movies API provides detailed information about movies in a structured format. Understanding the structure of movie data can be helpful when you're working with the API. This document outlines the key fields and their meanings in the movie data structure.

Movie Data Fields

Here are the main fields that you can expect in the movie data structure:

  • id: The unique identifier of the movie.

  • title: The title of the movie.

  • release_date: The release date of the movie.

  • genre: An array of genres associated with the movie.

  • director: The director of the movie.

  • actors: An array of actors in the movie.

  • plot: A brief description of the movie's plot.

  • rating: The average user rating for the movie.

Example Movie Data

Here's an example of what movie data in JSON format might look like:

{
  "id": 12345,
  "title": "The Shawshank Redemption",
  "release_date": "1994-09-23",
  "genre": ["Drama", "Crime"],
  "director": "Frank Darabont",
  "actors": ["Tim Robbins", "Morgan Freeman"],
  "plot": "Two imprisoned men bond over a number of years (...)",
  "rating": 9.3
}