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

{
    "id": 19815,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19815?format=api",
    "title": "Il tenente di Napoleone",
    "original_title": "Devil-May-Care",
    "year": 1929,
    "date_published": "1929-12-27",
    "duration": 97,
    "description": "A Bonapartist falls for a Royalist.",
    "long_description": "Napoleon Bonaparte has just abdicated the throne of France and Italy and has been banished to Elba, in the process restoring Louis XVIII to the throne. In the battle between the Bonapartists and the Royalists, Louis has ordered the execution of Napoleon's loyal soldiers, including Armand de Treville. However, Armand is able to escape just before he is to be executed. He is eventually able to take refuge in the south of France at the chateau of his friend, the Countess Louise, who, despite being a Royalist, is Armand's friend first and foremost. He is to be incognito working as one of her servants. Although Louise is in love with Armand, he in turn sees her more as a sister. En route to Louise's, Armand meets another Royalist, Leonie de Beaufort, with who, in their short encounter, he falls in love, although she would not even recognize him if she saw him again if only because of his face being hidden in the darkness during their encounter. Unknown to Armand, Leonie and Louise are ...",
    "avg_vote": "6.1",
    "imdb_score": "6.2",
    "votes": 103,
    "metascore": null,
    "budget": 487000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYmIyMDQ3MDUtYzI4Ny00ZDFkLThiZDgtMmViNjNmNjY1NDM3XkEyXkFqcGdeQXVyMDUyOTUyNQ@@._V1_UY268_CR83,0,182,268_AL_.jpg",
    "actors": [
        "Clifford Bruce",
        "Dorothy Jordan",
        "George Davis",
        "John Miljan",
        "Marion Harris",
        "Ramon Novarro",
        "William Humphrey"
    ],
    "directors": [
        "Sidney Franklin"
    ],
    "writers": [
        "Ernest Legouve",
        "Eugène Scribe"
    ],
    "genres": [
        "Music",
        "Romance",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}