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

{
    "id": 5529,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/5529?format=api",
    "title": "Hævnens Nat",
    "original_title": "Hævnens Nat",
    "year": 1916,
    "date_published": "1916-09-25",
    "duration": 100,
    "description": "A criminal escapes from prison, however a betrayal leads to his second arrest.",
    "long_description": "A simple-minded circus strongman, John Sikes, has been wrongly accused of a crime committed by Wilken. On the run with his infant son, he enters an affluent house and seeks help from Ann, but is taken captive and imprisoned. Fourteen years pass. Ann has married Dr. Richard West. John, a broken man, is released early for good behaviour. He goes to find his son Robert at the orphanage, but the boy was adopted years before. A flashback shows the baby being adopted by Ann. \"Slim\" Sam Morton runs a ring of thieves specializing in dog-napping. John knows one of them from prison. One of the gang sells a dog to Dr. West. He also steals the keys to West's country house, The Lindens. The thieves burgle the house. In the sack of loot, John finds a box belonging to Ann, the woman he believes betrayed him years before...",
    "avg_vote": "6.8",
    "imdb_score": "6.7",
    "votes": 269,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 7,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOWRmYmUwNTQtOTY1Ni00MGYzLWI0MTAtNDc4YThhN2U1N2E4XkEyXkFqcGdeQXVyNjU1ODUzOTY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Aage Schmidt",
        "Benjamin Christensen",
        "Carl Gottschalksen",
        "Charles Wilken",
        "Elith Pio",
        "Fritz Lamprecht",
        "Grethe Brandes",
        "Jon Iversen",
        "Jørgen Lund",
        "Karen Caspersen",
        "Mathilde Nielsen",
        "Osvald Helmuth",
        "Otto Reinwald",
        "Peter Fjelstrup",
        "Ulla Johansen"
    ],
    "directors": [
        "Benjamin Christensen"
    ],
    "writers": [
        "Benjamin Christensen"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Horror"
    ],
    "countries": [
        "Denmark"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Dansk Biograf Compagni"
}