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

{
    "id": 17423,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17423?format=api",
    "title": "Passerotti",
    "original_title": "Sparrows",
    "year": 1926,
    "date_published": "1926-01-01",
    "duration": 109,
    "description": "Molly, the eldest child at a baby farm hidden deep in a swamp, must rescue the others when their cruel master decides that one of them will be disposed of.",
    "long_description": "Evil Mr.Grimes keeps a rag-tag bunch orphans on his farm deep in a swamp in the US South. He forces them to work in his garden and treats them like slaves. They are watched over by the eldest, Molly. A gang in league with Mr. Grimes kidnaps Doris, the beautiful little daughter of a rich man, and hides her out on Grimes' farm, awaiting ransom. When the police close in, and Mr. Grimes threatens to throw Doris into the bottomless mire, Molly must lead her little flock out through the alligator-infested swamp.",
    "avg_vote": "7.3",
    "imdb_score": "7.3",
    "votes": 1155,
    "metascore": null,
    "budget": 463455,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 33,
    "reviews_from_critics": 24,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTY3MTkyMTc0MF5BMl5BanBnXkFtZTgwOTI5MDgwMjE@._V1_UY268_CR6,0,182,268_AL_.jpg",
    "actors": [
        "Billy 'Red' Jones",
        "Billy Butts",
        "Charlotte Mineau",
        "Florence Rogan",
        "Gustav von Seyffertitz",
        "Jackie Levine",
        "Lloyd Whitlock",
        "Mary Louise Miller",
        "Mary McLain",
        "Mary Pickford",
        "Monty O'Grady",
        "Muriel McCormac",
        "Roy Stewart",
        "Spec O'Donnell",
        "Sylvia Bernard"
    ],
    "directors": [
        "Tom McNamara",
        "William Beaudine"
    ],
    "writers": [
        "George Marion Jr.",
        "Winifred Dunn"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Pickford Corporation"
}