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

{
    "id": 19451,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19451?format=api",
    "title": "Nella tempesta",
    "original_title": "Tempest",
    "year": 1928,
    "date_published": "1928-05-27",
    "duration": 102,
    "description": "In Czarist Russia, a peasant officer, resented by the aristocrats, falls in love with a princess.",
    "long_description": "In the final days of Czarist Russia, a peasant is raised from the ranks to Lieutenant. The other officers, aristocrats all, resent him, and make his life difficult. He falls in love with a princess, who spurns him. When he is caught in her room, he is stripped of his rank and thrown into prison. Then comes the Red Terror, and the tables are turned.",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 350,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 13,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOGEwMTg2NjQtZDE0Yy00ZjEwLTg1NzAtNGVlYzk5NWM4NDhiXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UY268_CR6,0,182,268_AL_.jpg",
    "actors": [
        "Boris de Fast",
        "Camilla Horn",
        "Fred DeSilva",
        "George Fawcett",
        "Jack Manick",
        "John Barrymore",
        "Louis Wolheim",
        "Michael Visaroff",
        "Serge Temoff",
        "Ullrich Haupt"
    ],
    "directors": [
        "Lewis Milestone",
        "Sam Taylor"
    ],
    "writers": [
        "George Marion Jr.",
        "Vladimir Nemirovich-Danchenko"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Feature Productions"
}