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

{
    "id": 10883272,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10883272?format=api",
    "title": "Hayya: The Power of Love 2",
    "original_title": "Hayya: The Power of Love 2",
    "year": 2019,
    "date_published": "2019-09-19",
    "duration": 101,
    "description": "Haunted by the sins in his past, a journalist decides to become a humanitarian volunteer in the Palestinian border refugee camp. In that area, he meets Hayya, an innocent orphaned girl who is a victim of the conflict in Palestine.",
    "long_description": "Haunted by guilty feelings and sins in his past, Rahmat, a journalist who is learning to understand the meaning of love and faith, feels the need to do things differently in the process of Hijrah (move on). Rahmat decides to become a humanitarian volunteer in the Palestinian border refugee camp. In that area, he meets Hayya (5th), an innocent orphaned girl who is a victim of the conflict in Palestine. Hayya's presence brings many changes to Rahmat's life. When Rahmat has to return to Indonesia because he has to marry Yasna, Hayya is badly hurt. Relations between Rahmat, Hayya, and Yasna turn out to be complex, funny and stressful.",
    "avg_vote": "5.0",
    "imdb_score": "5.1",
    "votes": 149,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 19,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDlmMzFiMDgtMmNjMy00MjFiLTljYzktOTk5ODU5MTVkYjE1XkEyXkFqcGdeQXVyNzY4NDQzNTg@._V1_UY268_CR5,0,182,268_AL_.jpg",
    "actors": [
        "Adhin Abdul Hakim",
        "Amna Hasanah Shahab",
        "Asma Nadia",
        "Fajar Lubis",
        "Fauzi Baadila",
        "Hamas Syahid",
        "Humaidi Abas",
        "Meyda Sefira",
        "Ria Ricis"
    ],
    "directors": [
        "Jastis Arimba"
    ],
    "writers": [
        "Ali Budiyabto",
        "Jastis Arimba"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Indonesia"
    ],
    "languages": [
        "Indonesian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warna Pictures"
}