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

{
    "id": 10964430,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10964430?format=api",
    "title": "Thappad",
    "original_title": "Thappad",
    "year": 2020,
    "date_published": "2020-02-28",
    "duration": 142,
    "description": "Thappad is a story of Amrita whose seemingly perfect life is shattered when her husband slaps her once in a party. But is one slap enough to question what a relationship stands for?",
    "long_description": "Amrita and Vikram Sabharwal are happily married Vikram works in a reputed company while Amrita is a homemaker and her life surrounds only around him.Vikram gets promotion and they are soon to shift to London and throw a celebration party at the party Vikram finds that he wont be heading the London office and will have to work under his junior.Vikram gets in tiff with his colleague for the same while Amrita is trying to stop him and gets slapped by him this incident hurts her very badly and life does not remain the same for while Amrita decides to leaves the house and shift at her parents place further also taking the matter to the court.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 13751,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 4112382,
    "reviews_from_users": 859,
    "reviews_from_critics": 25,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWQ1Yzc2NDYtN2RjNC00ZGIyLWJkMjItMDlkODVhNjg0OTczXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ankur Rathee",
        "Dia Mirza",
        "Geetika Vidya Ohlyan",
        "Gracy Goswami",
        "Harssh Singh",
        "Kumud Mishra",
        "Manav Kaul",
        "Maya Sarao",
        "Naila Grewal",
        "Pavail Gulati",
        "Ram Kapoor",
        "Ratna Pathak Shah",
        "Santanu Ghatak",
        "Taapsee Pannu",
        "Tanvi Azmi"
    ],
    "directors": [
        "Anubhav Sinha"
    ],
    "writers": [
        "Mrunmayee Lagoo"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Hindi"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Benaras Mediaworks"
}