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

{
    "id": 12465,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12465?format=api",
    "title": "Miss Lulu Bett",
    "original_title": "Miss Lulu Bett",
    "year": 1921,
    "date_published": "1921-11-01",
    "duration": 71,
    "description": "A once-timid young woman gains newfound confidence after a failed marriage, much to the chagrin of her miserable family.",
    "long_description": "Wlliam deMille produced and directed Miss Lulu Bett, a film of extraordinary conviction and insight. It was then often the custom for unmarried women to lodge with family; thus we discover Miss Lulu in a boring Midwestern town, an exploited household drudge for her sister and her overbearing brother-in-law. In the course of the story (based upon the Pulitzer Prize play and novel by Zona Gale), Lulu evolves from slavery into an attractive and self-assured woman, prepared to make her own life. Revealed through wonderful performances and clever use of props, the characters are extraordinarily solid and involving.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 312,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOWE2ZjE0MTgtMDBlYS00MzRjLTljODItY2E1YmM4MzhjZGQ3XkEyXkFqcGdeQXVyMzI5NjUyMDM@._V1_UY268_CR84,0,182,268_AL_.jpg",
    "actors": [
        "Charles Ogle",
        "Clarence Burton",
        "Ethel Wales",
        "Helen Ferguson",
        "Lois Wilson",
        "Mabel Van Buren",
        "Mae Giraci",
        "Milton Sills",
        "Taylor Graves",
        "Theodore Roberts"
    ],
    "directors": [
        "William C. de Mille"
    ],
    "writers": [
        "Clara Beranger",
        "Zona Gale"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}