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

{
    "id": 13597,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/13597?format=api",
    "title": "Sherlock Holmes",
    "original_title": "Sherlock Holmes",
    "year": 1922,
    "date_published": "1922-03-07",
    "duration": 85,
    "description": "A young Sherlock Holmes seeks to bring down the criminal mastermind Moriarty as he solves a crime involving a blackmailed prince.",
    "long_description": "One of Barrymore's most prestigious early roles, this rarely seen film also presents screen debuts of William Powell and Roland Young. When a young prince is accused of a crime that could embroil him in international scandal, debonair super-sleuth Sherlock Holmes comes to his aid, and quickly discovers that behind the incident lurks a criminal mastermind eager to reduce Western civilization to anarchy.",
    "avg_vote": "5.8",
    "imdb_score": "5.8",
    "votes": 558,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 384770,
    "worldwide_gross_income": null,
    "reviews_from_users": 18,
    "reviews_from_critics": 15,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjE4NzIwMTY5MF5BMl5BanBnXkFtZTcwMDU0MDMzNA@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Anders Randolf",
        "Carol Dempster",
        "David Torrence",
        "Gustav von Seyffertitz",
        "Hedda Hopper",
        "John Barrymore",
        "Louis Wolheim",
        "Margaret Kemp",
        "Peggy Bayfield",
        "Percy Knight",
        "Reginald Denny",
        "Robert Fischer",
        "Robert Schable",
        "Roland Young",
        "William Powell"
    ],
    "directors": [
        "Albert Parker"
    ],
    "writers": [
        "Arthur Conan Doyle",
        "Earle Browne"
    ],
    "genres": [
        "Drama",
        "Mystery"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Goldwyn Pictures Corporation"
}