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

{
    "id": 22178,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22178?format=api",
    "title": "My Sin",
    "original_title": "My Sin",
    "year": 1931,
    "date_published": "1931-10-03",
    "duration": 80,
    "description": "Acquitted of murder charges, Carlotta moves to New York to start a new life.",
    "long_description": "In Panama, notorious nightclub hostess Carlotta kills a man in self-defense and is arrested for murder. Defending her at her trial is Dick Grady, a lawyer who has wasted his talent on alcohol. When he proves Carlotta's innocence, however, he regains respect and employment. Dick goes to Carlotta's apartment to thank her, and arrives just in time to keep her from committing suicide. He agrees that while the persona of Carlotta must die, the woman inside must go on and start anew. Loaning her his advance money, Carlotta and Dick create a new identity for her as \"Ann Trevor,\" and she moves to New York. Through various letters and repayment checks, Dick learns that Carlotta is happy and successful and falls in love with her. He relocates to New York, where Carlotta is employed as an interior decorator and is engaged to wealthy Larry Gordon. Carlotta is happy to see Dick again, but is dismayed to learn that he is in love with her. Dick believes she is deceiving Larry because she does not ...",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 140,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 9,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWM4NzJjOTYtYzQ1MS00MzM3LWJjMGYtMmRiMWUwOTFiNGYwXkEyXkFqcGdeQXVyNTUyNzA5ODE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anne Sutherland",
        "Eric Blore",
        "Fredric March",
        "Harry Davenport",
        "Jay Fassett",
        "Joseph Calleia",
        "Lily Cahill",
        "Margaret Adams",
        "Scott Kolk",
        "Tallulah Bankhead"
    ],
    "directors": [
        "George Abbott"
    ],
    "writers": [
        "Adelaide Heilbron",
        "Owen Davis"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}