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

{
    "id": 10932100,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10932100?format=api",
    "title": "Imperfect: Karir, Cinta, & Timbangan",
    "original_title": "Imperfect: Karir, Cinta, & Timbangan",
    "year": 2019,
    "date_published": "2019-12-19",
    "duration": 113,
    "description": "Being born fat and has dark skins, it feels like a curse for Rara, especially when she worked at the office that has surrounded by pretty girls. Her boss wants her to lose her weight, but there is a man who loves the way she were.",
    "long_description": "For Rara (Jessica Mila), being born fat and having dark skin is a curse. Especially if he sees Lulu (Yasmin Napper), his sister who looks exactly like their mother Debby (Karina Suwandi), a former model in the 90s. Luckily there is Dika (Reza Rahadian), a photographer who loves Rara as she is. One day, an opportunity arises for Rara to rise in office, but Rara's boss, Kelvin (Dion Wiyoko), requires that Rara should change her appearance.",
    "avg_vote": "7.9",
    "imdb_score": "7.8",
    "votes": 722,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNGVlZDcxZjgtZTY4Ny00OGZhLThmMGYtMGIwMmY5M2QwOWIyXkEyXkFqcGdeQXVyNzEzNjU1NDg@._V1_UY268_CR16,0,182,268_AL_.jpg",
    "actors": [
        "Aci Resti",
        "Clara Bernadeth",
        "Devina Aureel",
        "Dewi Irawan",
        "Dion Wiyoko",
        "Ernest Prakasa",
        "Jessica Mila",
        "Karina Nadila",
        "Karina Suwandhi",
        "Kiki Narendra",
        "Kiky Saputri",
        "Reza Rahadian",
        "Shareefa Daanish",
        "Yasmin Napper",
        "Zsazsa Utari"
    ],
    "directors": [
        "Ernest Prakasa"
    ],
    "writers": [
        "Ernest Prakasa",
        "Meira Anastasia"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Family"
    ],
    "countries": [
        "Indonesia"
    ],
    "languages": [
        "Indonesian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "StarVision Plus"
}