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

{
    "id": 11143108,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11143108?format=api",
    "title": "Oh My Kadavule",
    "original_title": "Oh My Kadavule",
    "year": 2020,
    "date_published": "2020-02-14",
    "duration": 151,
    "description": "When you think marrying your best friend means a 'happily ever-after' but it turns out to be just the reverse",
    "long_description": "Arjun is conveniently married to his best friend Anu and their marriage turns out to be a nightmare since he is not really in love with her. When things get tough Arjun gets a second chance in life that could change his path and perspective altogether.",
    "avg_vote": "8.1",
    "imdb_score": "8.1",
    "votes": 2386,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 35668,
    "reviews_from_users": 61,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzRiZGZmYWMtMmNhYy00NmE3LTgxZjItMDc1YzMxNTExM2VlXkEyXkFqcGdeQXVyMTEwNjA3NjE1._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Ashok Selvan",
        "Gajaraj",
        "Gautham Menon",
        "M.S. Bhaskar",
        "Ramesh Thilak",
        "Ritika Singh",
        "Sha Ra",
        "Vani Bhojan",
        "Vijay Sethupathi"
    ],
    "directors": [
        "Ashwath Marimuthu"
    ],
    "writers": [
        "Ashwath Marimuthu"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Tamil"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Axess Film Factory"
}