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

{
    "id": 11777040,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11777040?format=api",
    "title": "Sanyangeui sigan",
    "original_title": "Sanyangeui sigan",
    "year": 2020,
    "date_published": "2020-04-23",
    "duration": 134,
    "description": "In the near future, a financial crisis will hit Korea and slums arise. From those areas, a group of young people commit crime to survive.",
    "long_description": "In the dystopian South Korea, Jun Seok gets out of prison for a previous heist he and his friends had messed up, and the currency (the Korean won) has crashed massively, making the haul of their last job effectively worthless. Jun Seok proposes one last heist to his best friends Jang Ho and Ki Hoon, in order for the trio to escape from their miserable situations. Their target is an illegal gambling house, which stores hefty stacks of US dollars. The trio recruits Sang Soo, who currently works in the gambling house. After getting firearms from Bong Shik, a friend Jun Seok knew in prison, the quartet proceeds with the heist, which finishes messy but successful. They take a large sum of cash and the gambling house's surveillance hard drives, which contain footage of shady dealings between the gambling house's owners and various criminals. The loss of the surveillance hard drives made the gambling house's owners unhappy. They recruit killer Han to track the quartet and retrieve the hard ...",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 3191,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 52,
    "reviews_from_critics": 40,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMmIzYzUyZTktODVlYy00ZTdjLWFkYzEtNTMyZTY3MWVhNzQ0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Christopher Sean",
        "David Chen",
        "Greg Chun",
        "Hae-soo Park",
        "Jae-hong Ahn",
        "Johnny Yong Bosch",
        "Judy Alice Lee",
        "Jung-min Park",
        "Kaiji Tang",
        "Keong Sim",
        "Lee Jehoon",
        "Matthew Yang King",
        "Stephanie Sheh",
        "Stephen Fu",
        "Woo-sik Choi"
    ],
    "directors": [
        "Sung-hyun Yoon"
    ],
    "writers": [
        "Sung-hyun Yoon"
    ],
    "genres": [
        "Action",
        "Crime",
        "Drama"
    ],
    "countries": [
        "South Korea"
    ],
    "languages": [
        "Korean"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Netflix"
}