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

{
    "id": 23427,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23427?format=api",
    "title": "Scarface - Lo sfregiato",
    "original_title": "Scarface: The Shame of the Nation",
    "year": 1932,
    "date_published": "1947-11-15",
    "duration": 93,
    "description": "An ambitious and nearly insane violent gangster climbs the ladder of success in the mob, but his weaknesses prove to be his downfall.",
    "long_description": "Johnny Lovo rises to the head of the bootlegging crime syndicate on the south side of Chicago following the murder of former head, Big Louis Costillo. Johnny contracted Big Louis' bodyguard, Tony Camonte, to make the hit on his boss. Tony becomes Johnny's second in command, and is not averse to killing anyone who gets in his and Johnny's way. As Tony is thinking bigger than Johnny and is not afraid of anyone or anything, Tony increasingly makes decisions on his own instead of following Johnny's orders, especially in not treading on the north side run by an Irish gang led by a man named O'Hara, of whom Johnny is afraid. Tony's murder spree increases, he taking out anyone who stands in his and Johnny's way of absolute control on the south side, and in Tony's view absolute control of the entire city. Tony's actions place an unspoken strain between Tony and Johnny to the point of the two knowing that they can't exist in their idealized world with the other. Tony's ultimate downfall may be...",
    "avg_vote": "7.8",
    "imdb_score": "7.8",
    "votes": 25063,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 1308000,
    "reviews_from_users": 385,
    "reviews_from_critics": 86,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYmMxZTU2ZDUtM2Y1MS00ZWFmLWJlN2UtNzI0OTJiOTYzMTk3XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ann Dvorak",
        "Boris Karloff",
        "C. Henry Gordon",
        "Edwin Maxwell",
        "George Raft",
        "Inez Palange",
        "Karen Morley",
        "Osgood Perkins",
        "Paul Muni",
        "Purnell Pratt",
        "Tully Marshall",
        "Vince Barnett"
    ],
    "directors": [
        "Howard Hawks",
        "Richard Rosson"
    ],
    "writers": [
        "Armitage Trail",
        "Ben Hecht"
    ],
    "genres": [
        "Action",
        "Crime",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Caddo Company"
}