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

{
    "id": 11470290,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11470290?format=api",
    "title": "Gentleman",
    "original_title": "Gentleman",
    "year": 2020,
    "date_published": "2020-02-07",
    "duration": 144,
    "description": "The movie \"GENTLEMAN\" revolves around the character Bharath who is suffering from a rare disorder called Beauty of sleeping syndrome. Because of this, he tends to sleep 18 hours a day and ...",
    "long_description": "The movie \"GENTLEMAN\" revolves around the character Bharath who is suffering from a rare disorder called Beauty of sleeping syndrome. Because of this, he tends to sleep 18 hours a day and will be awake only 5 to 6 hours. e story deals with daily routine, have a life of the protagonist while is not simple as others. Meanwhile, the hero loses his family in a accident and le with his brother's five year old daughter. Although he tries to rebuild the life with the kid, it fails as the kid gets kidnapped and he starts to find her which takes the story to the next level leading to mafia.",
    "avg_vote": "7.1",
    "imdb_score": "7.0",
    "votes": 244,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 9,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTNmNDA0MzItMDE1OS00ZDllLThkNTUtODMwNjhjZjk1MWRiXkEyXkFqcGdeQXVyMTExMTYzNzM5._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Nishvika Naidu",
        "Prajwal Devaraj",
        "Sanchari Vijay"
    ],
    "directors": [
        "Jadesh Kumar"
    ],
    "writers": [
        "Maasthi Upparahalli"
    ],
    "genres": [
        "Action",
        "Drama",
        "Mystery"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Kannada"
    ],
    "rated": "Not rated or unkown rating",
    "company": "G Cinemas"
}