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

{
    "id": 20018,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20018?format=api",
    "title": "Notte di tradimento",
    "original_title": "In Old Arizona",
    "year": 1928,
    "date_published": "1929-01-20",
    "duration": 95,
    "description": "A charming, happy-go-lucky bandit in old Arizona plays cat-and-mouse with the sheriff trying to catch him while he romances a local beauty.",
    "long_description": "Army Sergeant Mickey Dunn sets out in pursuit of the Cisco Kid, a notorious if kind-hearted and charismatic bandit of the Old West. The Kid spends much of his loot on Tonia, the woman he loves, not realizing that she is being unfaithful to him in his absence. Soon, with her oblivious paramour off plying his trade, Tonia falls in with Dunn, drawn by the allure of a substantial reward for the Kid's capture -- dead or alive. Together, they concoct a plan to ambush and do away with the Cisco Kid once and for all.",
    "avg_vote": "5.5",
    "imdb_score": "5.5",
    "votes": 917,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 28,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjE0ODAxNzQ0M15BMl5BanBnXkFtZTgwNTk4ODQwMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Dorothy Burgess",
        "Edmund Lowe",
        "Warner Baxter"
    ],
    "directors": [
        "Irving Cummings"
    ],
    "writers": [
        "O. Henry",
        "Tom Barry"
    ],
    "genres": [
        "Action",
        "Adventure",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Italian",
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}