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

{
    "id": 11127878,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11127878?format=api",
    "title": "Milea: Suara dari Dilan",
    "original_title": "Milea: Suara dari Dilan",
    "year": 2020,
    "date_published": "2020-02-13",
    "duration": 102,
    "description": "Milea made the decision to part with Dilan as a warning for Dilan to stay away from the motorcycle gang. But the parting which had been only a bluff for Milea became a parting that lasted until they graduated from college and grew up.",
    "long_description": "Dilan (Iqbaal Ramadhan), the combat commander of a motorcycle gang in Bandung in the early 90s, formed a relationship with a new female student from Jakarta named Milea (Vanesha Prescilla). Dilan was always happy when he was with Milea, but his motorcycle gang friends feel that Dilan was getting away from his group because of Milea. A terrible event happened: one of their members, Akew (Gusti Rayhan), died of being beaten by a group of people. The incident made Milea worried about the safety of Dilan. Milea made the decision to part with Dilan as a warning for Dilan to stay away from the motorcycle gang. The Akew incident dragged Dilan to the authorities along with his friends. The parting which had been only a bluff for Milea became a parting that lasted until they graduated from college and grew up. They both still carry the same feeling when they meet again at a reunion, but each of them already has a partner.",
    "avg_vote": "6.1",
    "imdb_score": "6.0",
    "votes": 308,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzVjZWU4NzEtOGE2MS00NGJmLWJjZGQtYWUyNmNiZDdlZDBiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Andovi Da Lopez",
        "Bucek Depp",
        "Debo Andryos",
        "Farhan",
        "Giulio Parengkuan",
        "Gusti Rayhan",
        "Happy Salma",
        "Iqbaal Dhiafakhri Ramadhan",
        "Ira Wibowo",
        "Jerome Kurnia",
        "Omara N. Esteghlal",
        "Tike Priatnakusumah",
        "Vanesha Prescilla",
        "Yoriko Angeline",
        "Zulfa Maharani"
    ],
    "directors": [
        "Fajar Bustomi",
        "Pidi Baiq"
    ],
    "writers": [
        "Pidi Baiq",
        "Titien Wattimena"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "Indonesia"
    ],
    "languages": [
        "Indonesian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Falcon Pictures"
}