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

{
    "id": 24360,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24360?format=api",
    "title": "Murders in the Zoo",
    "original_title": "Murders in the Zoo",
    "year": 1933,
    "date_published": "1933-03-31",
    "duration": 62,
    "description": "A monomaniacal zoologist is pathologically jealous of his beautiful but unfaithful wife Evelyn and will not stop short of murder to keep her.",
    "long_description": "Eric Gorman returns with his wife Evelyn from a trip to the Orient collecting zoo animals, having killed a member of his expedition who happened one day to kiss Mrs. Gorman. On board ship Evelyn meets Roger Hewitt, who falls in love with her. After delivering his animals to the zoo, Gorman plots a way to dispose of Hewitt using one of his latest specimens, then continues using the zoo's non-human residents to do his beastly work.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 970,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 43,
    "reviews_from_critics": 39,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODU5MGE3ZDMtZDQ2ZS00OGU4LWFiYzAtMDA1Y2YzZTI3MmZmXkEyXkFqcGdeQXVyMTQ2MjQyNDc@._V1_UY268_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Charles Ruggles",
        "Gail Patrick",
        "Harry Beresford",
        "John Lodge",
        "Kathleen Burke",
        "Lionel Atwill",
        "Randolph Scott"
    ],
    "directors": [
        "A. Edward Sutherland"
    ],
    "writers": [
        "Philip Wylie",
        "Seton I. Miller"
    ],
    "genres": [
        "Crime",
        "Horror"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}