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

{
    "id": 10801398,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10801398?format=api",
    "title": "Amjeon",
    "original_title": "Amjeon",
    "year": 2019,
    "date_published": "2019-08-15",
    "duration": 86,
    "description": "Mi-Jung (Seo Ye-Ji ) is a rookie film director and she has been preparing a horror film for the past 8 years. One day, Mi-Jung hears about a movie which was banned. Mi-Jung wants to know ...",
    "long_description": "Mi-Jung (Seo Ye-Ji ) is a rookie film director and she has been preparing a horror film for the past 8 years. One day, Mi-Jung hears about a movie which was banned. Mi-Jung wants to know about the film. She begins to search for the movie. Her search takes her to meet Jae-Hyun (Jin Seon-Kyu), who is the director of the film. Jae-Hyun warns Mi-Jung to forget about his film, but she ignores his warning. Mi-Jung's obsession with the movie leads her to bizarre and horrible cases.",
    "avg_vote": "5.2",
    "imdb_score": "5.2",
    "votes": 449,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 786264,
    "reviews_from_users": 6,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOWZhM2FkZjUtZGEzZi00NDQ2LTk1OGMtZGM4MWZjOTA4NTMyXkEyXkFqcGdeQXVyMTAyNDYyNzcw._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Bo-ra Kim",
        "Cha Yub",
        "Jae-Young Joe",
        "Kim Jae-In",
        "Mi-kyung Kim",
        "Seon-kyu Jin",
        "So-Yi Shin",
        "Tae-boo Nam",
        "Ye-ji Seo",
        "Yoon Jeong-ro",
        "Yoon-ho Ji"
    ],
    "directors": [
        "Kim Jin-won"
    ],
    "writers": [
        "Kim Jin-won"
    ],
    "genres": [
        "Horror",
        "Mystery"
    ],
    "countries": [
        "South Korea"
    ],
    "languages": [
        "Korean"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Unknown"
}