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

{
    "id": 10932060,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10932060?format=api",
    "title": "Habibie & Ainun 3",
    "original_title": "Habibie & Ainun 3",
    "year": 2019,
    "date_published": "2019-12-19",
    "duration": 121,
    "description": "This movie follows the story of Hasri Ainun Besari Habibie's young life when she was in high school and medical college. She was known as a smart figure who became an idol and admired by many male students, including B.J. Habibie.",
    "long_description": "Ainun (Maudy Ayunda), as a teenager at her age, has a unique love story. When she was in high school, she was known as a smart figure who became an idol at his school and became the target of many male students, including Habibie. Their relationship starts with friendship. In college, she is a medical student and also a popular figure in the campus environment. Ahmad (Jefri Nichols), who came from a distinguished family, was a man who dared to express his love for Ainun. Then what made B.J. Habibie become the last port of Ainun's love journey. This story was inspired by the late Hasri Ainun Besari Habibie's youth and B.J. Habibie's memories of his soul mate.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 176,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 1,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BN2YwYzM1ZmItNGQyZi00NTE1LTkwYTItMjgwYzVmYjZkMjdhXkEyXkFqcGdeQXVyNzEzNjU1NDg@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Aghniny Haque",
        "Amaranggana",
        "Arswendi Nasution",
        "Arya Saloka",
        "Eric Febrian",
        "Jefri Nichol",
        "Jennifer Coppen",
        "Kevin Ardilova",
        "Lukman Sardi",
        "Marcella Zalianty",
        "Maudy Ayunda",
        "Mike Lucock",
        "Rebecca Klopper",
        "Reza Rahadian",
        "Teuku Ryzki"
    ],
    "directors": [
        "Hanung Bramantyo"
    ],
    "writers": [
        "David McElroy",
        "Mario Kassar"
    ],
    "genres": [
        "Biography",
        "Drama",
        "Romance"
    ],
    "countries": [
        "Indonesia"
    ],
    "languages": [
        "Indonesian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "MD Entertainment"
}