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

{
    "id": 11316824,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11316824?format=api",
    "title": "Happy Old Year",
    "original_title": "Happy Old Year",
    "year": 2019,
    "date_published": "2019-12-26",
    "duration": 113,
    "description": "A woman wants to reorganize her house and convert it into a home office. She will throw away anything that has been lying around unused. However, she faces a great challenge when she comes across some items that belonged to her ex-boyfriend.",
    "long_description": "Jean (Chutimon Chuengcharoensukying) wants to convert her house into a home office and she needs to majorly declutter and reorganize her entire house. Anything that has been lying around unused, she just simply throws all. However, Jean faces a great challenge when she comes across some items that belonged to Aim (Sunny Suwanmethanont), her ex-boyfriend. Although she has no use for the items, each one reminds her of a story that brings back memories, along with unresolved feelings that cannot be easily discarded by just dumping them into the garbage bag. Jean has to decide what to do with Aim's stuff. Should she just throw everything, keep everything, or return the items to their rightful owner to clear them completely from her house and her heart?",
    "avg_vote": "7.3",
    "imdb_score": "7.3",
    "votes": 1253,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 115871,
    "reviews_from_users": 11,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOTc2NDQzNDQtZmFhMC00YjU0LWI1MGUtZWFhOTc0Y2IxNGExXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Apasiri Nitibhon",
        "Chutimon Chuengcharoensukying",
        "Padcha Kitchaicharoen",
        "Sarika Sathsilpsupa",
        "Sunny Suwanmethanont",
        "Thirawat Ngosawang"
    ],
    "directors": [
        "Nawapol Thamrongrattanarit"
    ],
    "writers": [
        "Nawapol Thamrongrattanarit"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "Thailand"
    ],
    "languages": [
        "Thai"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Very Sad Pictures"
}