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

{
    "id": 22834,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22834?format=api",
    "title": "Downstairs",
    "original_title": "Downstairs",
    "year": 1932,
    "date_published": "1933-01-09",
    "duration": 77,
    "description": "An amoral chauffeur seeks to seduce a young bride.",
    "long_description": "At the wedding of Albert and Anna, Karl, the new chauffeur, arrives. Albert is the head butler, second generation to the Baron. Karl soon seems out of place as a servant, and Albert tells him so. But Karl is a cad. Whenever he gets the chance, he will try to seduce Anna, who is not wise in the ways of the world. He lies without question if it is to his advantage and charms money out of Sophie, the old cook. He disrupts the household and then blackmails the Baroness to keep from being sacked.",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 1599,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 22,
    "reviews_from_critics": 12,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZGNlYzgxYzctMWE2Ny00OTYyLTg1NjctMzZjYzIyMTk5YjA2XkEyXkFqcGdeQXVyMDUyOTUyNQ@@._V1_UY268_CR79,0,182,268_AL_.jpg",
    "actors": [
        "Bodil Rosing",
        "Hedda Hopper",
        "John Gilbert",
        "Lucien Littlefield",
        "Marion Lessing",
        "Olga Baclanova",
        "Otto Hoffman",
        "Paul Lukas",
        "Reginald Owen",
        "Virginia Bruce"
    ],
    "directors": [
        "Monta Bell"
    ],
    "writers": [
        "John Gilbert",
        "Lenore J. Coffee"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}