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

{
    "id": 18526,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18526?format=api",
    "title": "Le notti di Chicago",
    "original_title": "Underworld",
    "year": 1927,
    "date_published": "1927-10-29",
    "duration": 80,
    "description": "Boisterous gangster kingpin Bull Weed rehabilitates his former lawyer from his alcoholic haze, but complications arise when he falls for Weed's girlfriend.",
    "long_description": "'Nobody helps me -- I help them!' boasts open-handed gangster Bull Weed, handing over what will prove to be the best investment in his high-spending career: a thousand dollars that will put the literate 'Rolls Royce' of vagrants back on his feet. Living it up in the Twenties with the aid of cool but smouldering moll Feathers, the Bull lords it over the law and his rivals alike -- specifically big Buck Mulligan, whose floral-tributes business echoes that of a certain real-life Chicago gangster... Yet Feathers, prize possession and object of envy, proves his weak point; and in the end, Bull Weed will indeed come to need help from others, and more than he has ever needed it before. But can Rolls Royce and Feathers still give it to him? And will the Bull accept?",
    "avg_vote": "7.6",
    "imdb_score": "7.5",
    "votes": 2605,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 1642194,
    "worldwide_gross_income": null,
    "reviews_from_users": 31,
    "reviews_from_critics": 50,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTJmZmI3OWMtZGQyZS00ZmZiLTgyNDgtMDdkNzYxZWJlMzEwXkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Clive Brook",
        "Evelyn Brent",
        "Fred Kohler",
        "George Bancroft",
        "Helen Lynch",
        "Jerry Mandy",
        "Larry Semon"
    ],
    "directors": [
        "Arthur Rosson",
        "Josef von Sternberg"
    ],
    "writers": [
        "Ben Hecht",
        "Charles Furthman"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Film-Noir"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}