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

{
    "id": 11081744,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11081744?format=api",
    "title": "Realna prica",
    "original_title": "Realna prica",
    "year": 2019,
    "date_published": "2019-11-12",
    "duration": 91,
    "description": "The movie Real Story takes us through the saga of the actor, Veljko Radisavljevic, who has the impression that the entire universe has conspired against him. He is a walking problem and ...",
    "long_description": "The movie Real Story takes us through the saga of the actor, Veljko Radisavljevic, who has the impression that the entire universe has conspired against him. He is a walking problem and firmly believes that all the discord is created by the people around him, which is why he often gets into comic conflicts with friends, family, colleagues and even random passengers. Waiting for the big role that he believes will solve all his troubles, Veljko begins to lose his sense of real problems.",
    "avg_vote": "7.2",
    "imdb_score": "7.3",
    "votes": 926,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 166389,
    "reviews_from_users": 5,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTgzZDBjNzQtNGVkNy00ZjlkLTgyMzMtNTQ0MDRlMDM4NTA3XkEyXkFqcGdeQXVyMjM5MTg4MjQ@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Branimir Brstina",
        "Gordan Kicic",
        "Jovana Gavrilovic",
        "Katarina Gojkovic",
        "Lena Lazovic",
        "Marko Crnogorac",
        "Milenko Adamov",
        "Milica Mihajlovic",
        "Nebojsa Ilic",
        "Nemanja Oliveric",
        "Nina Jankovic",
        "Primoz Ekart",
        "Radomir Nikolic",
        "Svetozar Cvetkovic",
        "Vanja Ejdus"
    ],
    "directors": [
        "Gordan Kicic"
    ],
    "writers": [
        "Gordan Kicic"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "Serbia"
    ],
    "languages": [
        "Serbian"
    ],
    "rated": "16",
    "company": "This and That Productions"
}