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

{
    "id": 25101,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/25101?format=api",
    "title": "Le armi di Eva",
    "original_title": "Fashions of 1934",
    "year": 1934,
    "date_published": "1934-02-14",
    "duration": 78,
    "description": "When the Manhattan investment firm of Sherwood Nash goes broke, he joins forces with his partner Snap and fashion designer Lynn Mason to provide discount shops with cheap copies of Paris couture dresses.",
    "long_description": "Sherwood Nash is a swindler who bootlegs Paris fashions for sale at cut-rate prices. His assistant Lynn poses as An American interested in a dress and Snap conceals a camera in his cane. When they try to steal the latest Baroque designs hidden cameras capture them. Threat and counterthreat lead to the suggestion of putting on a legitimate show.",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 1351,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 27,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTY2NTg0MjYxN15BMl5BanBnXkFtZTgwOTA4Njk1MDE@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Bette Davis",
        "Dorothy Burgess",
        "Etienne Girardot",
        "Frank McHugh",
        "George Humbert",
        "Gordon Westcott",
        "Henry O'Neill",
        "Hugh Herbert",
        "Nella Walker",
        "Phillip Reed",
        "Reginald Owen",
        "Spencer Charters",
        "Verree Teasdale",
        "William Burgess",
        "William Powell"
    ],
    "directors": [
        "William Dieterle"
    ],
    "writers": [
        "Carl Erickson",
        "F. Hugh Herbert"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Musical"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}