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

{
    "id": 11151982,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11151982?format=api",
    "title": "Goblin Slayer: Goblin's Crown",
    "original_title": "Goblin Slayer: Goblin's Crown",
    "year": 2020,
    "date_published": "2020-02-01",
    "duration": 85,
    "description": "In a world dominated by monsters, a young priestess decides to train as an adventurer to deal with the threat. She joins a group of inexperienced fighters who have set out to drive the goblins away.",
    "long_description": "The humanity has been at war with different kinds of monsters for far too long, however, people are now used to it. For those who want to take part in this, there is a guild of adventurers, where everyone can accept a quest and fight monsters for a reward. Among all those monsters, goblins are believed to be the weakest creatures to fight, which makes rewards for killing them quite minimal. Being alone, goblins are easy to kill, since they are not smart and lack any strategy whatsoever. However, among these stupid creatures there are goblins that are much more powerful, smarter and deadlier than their small and foolish brothers. Together, they form a power that is able to trouble even experienced adventurers. The problem is that only a few understand it. Goblin Slayer, Orcbolg, or Beard-cutter is an underappreciated silver-ranked adventurer, who, for some reason, only accepts goblin-killing quests. What is his story?",
    "avg_vote": "6.8",
    "imdb_score": "6.7",
    "votes": 462,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 3,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYzIzNTNkZmMtYTE2Mi00NWEwLTk5MzktNWM2ZTNlNDI2MmM4XkEyXkFqcGdeQXVyNjc3MjQzNTI@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Sumire Uesaka",
        "Yui Ogura",
        "Yuichiro Umehara"
    ],
    "directors": [
        "Takaharu Ozaki"
    ],
    "writers": [
        "Kumo Kagyu"
    ],
    "genres": [
        "Action",
        "Adventure",
        "Animation"
    ],
    "countries": [
        "Japan"
    ],
    "languages": [
        "Japanese"
    ],
    "rated": "Not rated or unkown rating",
    "company": "White Fox"
}