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/22264?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 22264,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22264?format=api",
    "title": "Il fantasma di Parigi",
    "original_title": "The Phantom of Paris",
    "year": 1931,
    "date_published": "1931-09-12",
    "duration": 74,
    "description": "Cheri-Bibi is an escape artist wrongly imprisoned for murdering the wealthy father of his admirer Cecile. The real murderer is Cecile's fiancé, so how will Bibi escape his death sentence and win back Cecile?",
    "long_description": "Bibi is a world class escape artist, but he cannot escape the false murder charge that is placed on him. Max has killed Bourrelier before he was removed from the will so that he will be rich when he marries Cecile. Together with Vera, they put the blame on Bibi, who is a romantic rival to Max, and he is sentenced to death. But Bibi escapes before his execution and hides in Herman's secret cellar. When he learns that Max is dying, Bibi goes to his house for his confession, but Max dies before it is told to anyone else. So Bibi, has just one chance, and he goes to Dr. Gorin who will make him look like Max so that he can clear his name and put the blame where it belongs - on Max, even in death.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 1264,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 20,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTc4ZTM5MGQtMjFkOS00MDNkLThhMmMtYzIwYjBiMTIzYTRiXkEyXkFqcGdeQXVyNDY3MzU2MDM@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Alfred Hickman",
        "C. Aubrey Smith",
        "Ian Keith",
        "Jean Hersholt",
        "John Gilbert",
        "Leila Hyams",
        "Lewis Stone",
        "Natalie Moorhead"
    ],
    "directors": [
        "John S. Robertson"
    ],
    "writers": [
        "Edwin Justus Mayer",
        "Gaston Leroux"
    ],
    "genres": [
        "Drama",
        "Thriller"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}