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

{
    "id": 11226466,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11226466?format=api",
    "title": "Capmaari",
    "original_title": "Capmaari",
    "year": 2019,
    "date_published": "2019-11-01",
    "duration": 133,
    "description": "Vijay (Jai) an IT professional happens to share an coach with Jenny (Vaibhavi Shandilya) and the duo strike a conversation and soon are sharing beers and the bed too. After two years they ...",
    "long_description": "Vijay (Jai) an IT professional happens to share an coach with Jenny (Vaibhavi Shandilya) and the duo strike a conversation and soon are sharing beers and the bed too. After two years they meet and recognize each other and for some inexplicable reason decide to get married. Vijay's colleague Varsha (Athulya Ravi) is ogling at him for years and for some inexplicable reason again she never explicitly say it out to him though she shows it in every possible way. Problem is Varsha continues to pine for Vijay and she gets a chance one night when he drops her home and she beds him using a few beers. A pregnant Varsha then forces her way into the young couple's house.",
    "avg_vote": "3.3",
    "imdb_score": "3.3",
    "votes": 110,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": null,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNGQ3ZmFlYzktMzQxZC00OGQyLTg1ZjEtNDFiYzBhZDI3NzI0XkEyXkFqcGdeQXVyOTk3NTc2MzE@._V1_UY268_CR5,0,182,268_AL_.jpg",
    "actors": [
        "Adhavan",
        "Anisha",
        "Baby Mirthika Muralitharan",
        "Balaji",
        "Banu Priya",
        "Crane Manohar",
        "Deepika",
        "Devatharshini",
        "Gayathri",
        "Jai",
        "Livingstone",
        "Master Param Guganesh",
        "S.A. Chandrashekhar",
        "Sharmela Dutta",
        "Thaadi Balaji"
    ],
    "directors": [
        "S.A. Chandrashekhar"
    ],
    "writers": [
        "Unknown"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Tamil"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Green Signal"
}