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

{
    "id": 25037,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/25037?format=api",
    "title": "La morte in vacanza",
    "original_title": "Death Takes a Holiday",
    "year": 1934,
    "date_published": "1934-03-30",
    "duration": 79,
    "description": "The Grim Reaper takes the form of a Prince in an attempt to relate to humans and, along the way, also learns what it is to love.",
    "long_description": "Death (Frederic March) decides to take a holiday from his usual business to see what it is like to be a mortal. Posing as Prince Sirki, he spends three days with Duke Lambert (Sir Guy Standing) and his guests at his dukal estate. Several of the women are attracted to the mysterious Prince, but shy away from him when they sense his true nature. But Grazia (Evelyn Venable), the beautiful young woman who the Duke thought was to marry his son, loves him, even when she knows who he is.",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 1664,
    "metascore": "53.0",
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 39,
    "reviews_from_critics": 15,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjAwNzAxOTMxOF5BMl5BanBnXkFtZTgwMzMzNzY2MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Edward Van Sloan",
        "Evelyn Venable",
        "Fredric March",
        "G.P. Huntley",
        "Gail Patrick",
        "Guy Standing",
        "Helen Westley",
        "Henry Travers",
        "Katharine Alexander",
        "Kathleen Howard",
        "Kent Taylor",
        "Otto Hoffman"
    ],
    "directors": [
        "Mitchell Leisen"
    ],
    "writers": [
        "Gladys Lehman",
        "Maxwell Anderson"
    ],
    "genres": [
        "Drama",
        "Fantasy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}