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

{
    "id": 22979,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22979?format=api",
    "title": "L'uomo dalla scure",
    "original_title": "The Hatchet Man",
    "year": 1932,
    "date_published": "1932-02-06",
    "duration": 74,
    "description": "A hatchet man is ordered to kill his close friend for the sake of Tong.",
    "long_description": "San Francisco Tong hatchet man Wong must execute his boyhood friend Sun. Sun knew his time was up and wrote out his will just prior to Wong showing up at his door. When Sun realizes Wong is there to kill me he tries to set his friend's mind at ease by telling him he is the beneficiary of all Sun's worldly possessions and convinces Wong to promise to take care of Sun's young daughter, Toya San who Sun has bequeathed to become his wife. Years later, when she becomes of age, she marries Wong, now a powerful figure, though she loves evil Harry. When Wong learns Toya will be happier with Harry he allows them to leave. Still later Wong learns that Harry has been deported and since Toya could not prove she was married to someone else she too was deported to China. When Wong learns of this, he goes after them.",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 727,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 22,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYTFjNGZjMjctYjUwNS00NzY5LWE0M2YtZTdjMDI5OTkxMmRjXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR9,0,182,268_AL_.jpg",
    "actors": [
        "Charles Middleton",
        "Dudley Digges",
        "E. Alyn Warren",
        "Edmund Breese",
        "Edward G. Robinson",
        "Edward Peil Sr.",
        "J. Carrol Naish",
        "Leslie Fenton",
        "Loretta Young",
        "Tully Marshall"
    ],
    "directors": [
        "William A. Wellman"
    ],
    "writers": [
        "Achmed Abdullah",
        "David Belasco"
    ],
    "genres": [
        "Crime",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}