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

{
    "id": 24435,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24435?format=api",
    "title": "Il caso dell'avv. Durant",
    "original_title": "Penthouse",
    "year": 1933,
    "date_published": "1933-09-08",
    "duration": 90,
    "description": "A lawyer's fiancée leaves him after he defends a racketeer accused of murder, but she needs his help when her new beau is accused of killing an old flame.",
    "long_description": "Racketeer Tony Gazotti is thankful that lawyer Jackson Durant helps him beat a murder rap, but Durant just does it for the thrill of it and refuses payment. Durant's defense of mobsters causes his firm to disown him and his girlfriend Sue to leave him. But when young Tom Siddall, Sue's new boyfriend, is framed for a murder, she is the first to come asking for Durant's help. Durant uses Gazotti's information network and the help of new girlfriend Gertie Waxted to find that rival gangster Jim Crelliman is involved in the framing of Siddall. When Durant sends Gertie to Crelliman's apartment in a bid to blow open the case, she is walking on thin ice.",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 951,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 13,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODI2ZGE5MjctMWY5Zi00YjU5LWFjZGYtOGVhODVmNjM2N2M4XkEyXkFqcGdeQXVyMTcyODY2NDQ@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Belasco",
        "C. Henry Gordon",
        "Charles Butterworth",
        "George E. Stone",
        "Mae Clarke",
        "Martha Sleeper",
        "Myrna Loy",
        "Nat Pendleton",
        "Phillips Holmes",
        "Raymond Hatton",
        "Robert Emmett O'Connor",
        "Warner Baxter"
    ],
    "directors": [
        "W.S. Van Dyke"
    ],
    "writers": [
        "Albert Hackett",
        "Frances Goodrich"
    ],
    "genres": [
        "Crime",
        "Mystery",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}