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

{
    "id": 11497346,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11497346?format=api",
    "title": "Malgudi Days",
    "original_title": "Malgudi Days",
    "year": 2020,
    "date_published": "2020-02-07",
    "duration": 154,
    "description": "A 65-year-old celebrated writer Lakshminarayana Malgudi announces his retirement. On his post-retirement run to complete a few pending things, he happens to meet a young girl named Prakruthi who becomes a part of his journey.",
    "long_description": "In this amalgamation of relationships and nostalgia, a 65-year-old celebrated writer Lakshminarayana Malgudi announces his retirement. On his Post-retirement run to complete a few pending things, he happens to meet a young girl named Prakruthi who becomes a part of his journey. The reason why she joins him in his journey and the inspiring connection between Malgudi Days and Lakshminarayana Malgudi.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 155,
    "metascore": null,
    "budget": 50000000,
    "budget_currency": "INR",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 27,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZDBkNmVhYjYtNjI4Zi00OTk2LTg2Y2MtMDNiNjllMGFjNTk2XkEyXkFqcGdeQXVyMTExNDQ1NjYz._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Afna Aravind",
        "Arjun Kapikad",
        "Aryan Gowda",
        "Bank Janardhan",
        "Dhanraj",
        "Gopinath Bhat",
        "Harsha Ghobat",
        "Jayamma",
        "Niharika Gowda",
        "Preetham Aithal",
        "Richard Louis",
        "Roopesh Kumar",
        "Sanchith Hegde",
        "Sandesh Jain",
        "Srivatsa Karanth"
    ],
    "directors": [
        "Kishor Moodbidri"
    ],
    "writers": [
        "Kishor Moodbidri"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Kannada"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Swayam Prabha Movies and Entertainment"
}