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

{
    "id": 17739,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17739?format=api",
    "title": "Il castello degli spettri",
    "original_title": "The Cat and the Canary",
    "year": 1927,
    "date_published": "1929-07-15",
    "duration": 108,
    "description": "Relatives of an eccentric millionaire gather in his spooky mansion on the 20th anniversary of his death for the reading of his will.",
    "long_description": "Rich old Cyrus West's relatives are waiting for him to die so they can inherit. But he stipulates that his will be read 20 years after his death. On the appointed day his expectant heirs arrive at his brooding mansion. The will is read and it turns out that Annabelle West, the only heir with his name left, inherits, if she is deemed sane. If she isn't, the money and some diamonds go to someone else, whose name is in a sealed envelope. Before he can reveal the identity of her successor to Annabelle, Mr. Crosby, the lawyer, disappears. The first in a series of mysterious events, some of which point to Annabelle in fact being unstable.",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 2699,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 325550,
    "worldwide_gross_income": null,
    "reviews_from_users": 53,
    "reviews_from_critics": 57,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYTVlNmUyYTQtMDViMi00MmM3LTk2YTQtYmUxNDYzOTQ3YWNmXkEyXkFqcGdeQXVyNzk3ODM4NQ@@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Edmund Carewe",
        "Creighton Hale",
        "Flora Finch",
        "Forrest Stanley",
        "George Siegmann",
        "Gertrude Astor",
        "Laura La Plante",
        "Lucien Littlefield",
        "Martha Mattox",
        "Tully Marshall"
    ],
    "directors": [
        "Paul Leni"
    ],
    "writers": [
        "John Willard",
        "Robert F. Hill"
    ],
    "genres": [
        "Comedy",
        "Horror",
        "Mystery"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universal Pictures"
}