This endpoint gives access to detailed movie information from the OCMovies API.

The OCMovies API is a RESTful API built using Django Rest Framework with the objective to support educational projects through a local execution of the server. It uses data from more than 80k movies from de IMDb website.

Not all the detailed data is present in the title list endpoint available here. Only the detailed information provided on the current endpoint gives access to e.g. the description, long description or buget and income info about the movie.

If you need to get a full list of available genres, refer to the genres endpoint.

Please, refer to the title list endpoint to get various search or sort capabilities, thereby allowing to efficiently identify the movies you want to look at.

GET /api/v1/titles/15768?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 15768,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15768?format=api",
    "title": "L'angelo del focolare",
    "original_title": "Du skal ære din hustru",
    "year": 1925,
    "date_published": "1925-10-05",
    "duration": 111,
    "description": "When a man becomes tyrannical towards his family, the women of the house decide to teach him a lesson in gratitude.",
    "long_description": "Victor Frandsen is a domestic tyrant. His wife Ida has to work as a slave for him and the rest of the family. She rises early to prepare everything for the day, she toils all day long, and she is often up also in the night, doing some sewing to earn extra money for the household. In daytime she is supported by an old woman called Mads, who was Victors' nanny when he was a child. Mads is filled with loathing for Victor's behavior towards his wife, and calls him a brute. She understands that Ida is on the verge of a serious breakdown, and persuades Ida's mother, Mrs. Kryer, to take Ida away. Mads will herself take care of the household and the children for a time. When Victor comes home and finds out that Ida is gone, he gets angry. He asks his daughter, Karen, where her mother is, but she refuses to tell him. She only says that her mother is very ill, and that it will be his fault if she dies. The accusation strikes Victor in his heart, and he sits down, feeling dejected. Karen ...",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 1737,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 21,
    "reviews_from_critics": 28,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZDYwZjY0NzctOWUwNC00NTM0LThhYWEtOTA0NWZmNTI5NjZkXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Aage Hoffman",
        "Aage Schmidt",
        "Astrid Holm",
        "Byril Harvig",
        "Clara Schønfeld",
        "Frank Henriksen",
        "Frk. Voss-Christensen",
        "Georg Busch",
        "Johannes Meyer",
        "Johannes Nielsen",
        "Karin Nellemose",
        "Mathilde Nielsen",
        "Petrine Sonne",
        "Viggo Lindstrøm",
        "Vilhelm Petersen"
    ],
    "directors": [
        "Carl Theodor Dreyer"
    ],
    "writers": [
        "Carl Theodor Dreyer",
        "Svend Rindom"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Denmark"
    ],
    "languages": [
        "Danish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Palladium Film"
}