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

{
    "id": 21932,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21932?format=api",
    "title": "The Guilty Generation",
    "original_title": "The Guilty Generation",
    "year": 1931,
    "date_published": "1931-11-19",
    "duration": 82,
    "description": "A Romeo and Juliet love story between the son of a brutal Italian bootlegger and the daughter of his bitter ex-partner, who is engaged in a blood feud with his one-time friend.",
    "long_description": "John Smith is a young architect who changed his name from Marco Ricca when he realized that being a notorious bootlegger's son was not likely to help his career. Maria Palmiero's father is also a bootlegger, and she's finding that the high society circles she wants to move in are not very welcoming to her. Naturally, John and Maria's fathers are waging a brutal gang war back in New York, and naturally John and Maria fall in love. The premise mirrors that of \"Romeo and Juliet,\" but the plot doesn't, although the bodies do pile up.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 237,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 18,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYzY5MGJhOTgtYmVhNS00MWRjLTk5NmUtNjQxOTdjYTBjYWU3XkEyXkFqcGdeQXVyMTk2MzI2Ng@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Boris Karloff",
        "Constance Cummings",
        "Eddie Boland",
        "Elliott Rothe",
        "Emma Dunn",
        "Fred Howard",
        "James Wilcox",
        "Leo Carrillo",
        "Leslie Fenton",
        "Phil Tead",
        "Robert Young",
        "Ruth Warren",
        "William H. O'Brien"
    ],
    "directors": [
        "Rowland V. Lee"
    ],
    "writers": [
        "J. Kirby Hawks",
        "Jo Milward"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Italian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Columbia Pictures"
}