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

{
    "id": 22117,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22117?format=api",
    "title": "The Man in Possession",
    "original_title": "The Man in Possession",
    "year": 1931,
    "date_published": "1931-07-04",
    "duration": 84,
    "description": "A charming bailiff's assistant poses as a young woman's butler until she can pay her debts.",
    "long_description": "Recently released from jail, Raymond Dabney is the black sheep of his family. His father and brother want him out of England and out of their hair. Only his mother seems to harbor some affection for him. Looking for work in London, Raymond gets a job assisting a bailiff in collecting debts. Crystal Wetherby, a lovely young woman living outside her means, hopes to romance a wealthy man in order to pay her bills. When the bailiff shows up at her house with a writ, Raymond is left behind, taking possession of the house and everything in it as an official representative of the Crown. Until Crystal can pay her debt, Raymond will stay in her house and keep an eye on things, a rather unwelcome guest. Encouraged to be courteous and offer domestic assistance in his awkward duty, Raymond agrees to act as Crystal's butler. As butler, Raymond is surprised to learn that Crystal's fiancé is his brother Claude. Raymond's interference seems to ruin Crystal's chances with both Claude and Sir Charles ...",
    "avg_vote": "6.9",
    "imdb_score": "7.0",
    "votes": 271,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 8,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMWQ3Njc3ZmMtZDgxZi00YjBkLTk2NjMtYTFiZTllZjIzYjBjXkEyXkFqcGdeQXVyNDY3MzU2MDM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alan Mowbray",
        "Beryl Mercer",
        "C. Aubrey Smith",
        "Charlotte Greenwood",
        "Forrester Harvey",
        "Irene Purcell",
        "Maude Eburne",
        "Reginald Owen",
        "Robert Montgomery",
        "Yorke Sherwood"
    ],
    "directors": [
        "Sam Wood"
    ],
    "writers": [
        "H.M. Harwood",
        "Sarah Y. Mason"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}