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

{
    "id": 24865,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24865?format=api",
    "title": "La famiglia Barrett",
    "original_title": "The Barretts of Wimpole Street",
    "year": 1934,
    "date_published": "1934-09-21",
    "duration": 109,
    "description": "Elizabeth Barrett's tyrannical father has forbidden any of his family to marry. Nevertheless, Elizabeth falls in love with the poet Robert Browning.",
    "long_description": "In 1845 London, the Barrett family is ruled with an iron fist by its stern widowed patriarch, Edward Moulton-Barrett. His nine grown children are afraid of him more than they love him. One of his rules is that none of his children are allowed to marry, which does not sit well with youngest daughter Henrietta as she loves and wants to marry Captain Surtees Cook. Of the nine, the one exception is his daughter Elizabeth, who abides faithfully to her father's wishes. Elizabeth does not think too much about the non-marriage rule as she has an unknown chronic illness which has kept her bedridden. She feels her life will not be a long one. With her time, she writes poetry, which she shares by correspondence with another young poet, Robert Browning. Elizabeth's outlook on her life changes when she meets Mr. Browning for the first time, he who has fallen in love with her without even having met her. She, in return, falls in love with him after their meeting. With Mr. Browning's love and ...",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 1614,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 30,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BY2Q4ZDBkMzEtNWM4ZC00MDRjLWIwNDItZTNkYWZjOGE5MjYwXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Charles Laughton",
        "Ferdinand Munier",
        "Fredric March",
        "Ian Wolfe",
        "Katharine Alexander",
        "Leo G. Carroll",
        "Marion Clayton Anderson",
        "Matthew Smith",
        "Maureen O'Sullivan",
        "Neville Clark",
        "Norma Shearer",
        "Ralph Forbes",
        "Robert Carleton",
        "Una O'Connor",
        "Vernon Downing"
    ],
    "directors": [
        "Sidney Franklin"
    ],
    "writers": [
        "Ernest Vajda",
        "Rudolph Besier"
    ],
    "genres": [
        "Biography",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}