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

{
    "id": 24757,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24757?format=api",
    "title": "Sposatevi ragazzi!",
    "original_title": "Wedding Rehearsal",
    "year": 1932,
    "date_published": "1933-01-30",
    "duration": 84,
    "description": "Young man fights off attempts to marry him off to a series of available girls. Intersting glimpses of London in 1930.",
    "long_description": "Reggie, the impish Marquis of Buckminster, has many friends and is happy with his present bachelor lifestyle. But his grandmother demands that he now get married to one of a few suitable women that she names, and have some children. Two of the women are twin sisters who are friends of his from another aristocratic family, so he visits them, and learns that they already have fiancés but commoners, against their family's wishes. If he can help them to marry the men they want, it will also shorten the list of candidates and maybe help him remain single so Reggie does everything he can to help them.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 210,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 8,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNjZiZmYwZjktYjY2NS00YThjLThhZGItMmU3YTRkNDVkZmQ2XkEyXkFqcGdeQXVyNDY3MzU2MDM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Diana Napier",
        "Edmund Breon",
        "George Grossmith",
        "Joan Gardner",
        "John Loder",
        "Kate Cutler",
        "Lady Tree",
        "Lawrence Hanray",
        "Maurice Evans",
        "Merle Oberon",
        "Morton Selten",
        "Rodolfo Mele",
        "Roland Young",
        "Wendy Barrie"
    ],
    "directors": [
        "Alexander Korda"
    ],
    "writers": [
        "George Grossmith",
        "Lajos Biró"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "UK"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "London Film Productions"
}