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

{
    "id": 11223148,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11223148?format=api",
    "title": "Koncentrisi se, baba",
    "original_title": "Koncentrisi se, baba",
    "year": 2020,
    "date_published": "2020-08-14",
    "duration": 92,
    "description": "April 1992. Members of a large family strewn around the former Yugoslavia gather around the death bed of their elderly matriarch. She is not well, but the forecast of a family doctor that ...",
    "long_description": "April 1992. Members of a large family strewn around the former Yugoslavia gather around the death bed of their elderly matriarch. She is not well, but the forecast of a family doctor that her death is a matter of minutes away proves incorrect, so the waiting stretches out for days. Relatives start bickering, playing tricks and arguing over the inheritance to be left by the old woman, especially over her large family house in Sarajevo. Despite her deteriorating health, Grandma happily joins the fray. It appears as if that might be what is keeping her alive. Family feuds and intrigues directed against one of the sisters are more important to the family than the clear, terrifying signs of an approaching cataclysm. When the scheming is finally revealed, it is too late. A war has begun in Sarajevo.",
    "avg_vote": "7.7",
    "imdb_score": "7.6",
    "votes": 187,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 1,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOGJkNzEwMzMtMmFiYS00OTQ2LWE5ZWItOGM3MmE3NmMzNDczXkEyXkFqcGdeQXVyMTY0NTExNTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Admir Glamocak",
        "Alma Prica",
        "Branimir Popovic",
        "Dino Sarija",
        "Dzenita Imamovic",
        "Emir Hadzihafizbegovic",
        "Izudin Bajrovic",
        "Jadranka Djokic",
        "Jasna Zalica",
        "Mira Banjac",
        "Vedrana Bozinovic"
    ],
    "directors": [
        "Pjer Zalica"
    ],
    "writers": [
        "Pjer Zalica"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "Bosnia and Herzegovina",
        "Turkey"
    ],
    "languages": [
        "Bosnian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Obala Art Centar"
}