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

{
    "id": 11046300,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11046300?format=api",
    "title": "Ujda Chaman",
    "original_title": "Ujda Chaman",
    "year": 2019,
    "date_published": "2019-11-01",
    "duration": 120,
    "description": "Chaman Kohli is 30 -year-old bachelor with Premature Balding and in quest of a beautiful wife. Chaman hits rock bottom when an astrologer gives him a deadline to find himself a wife or remain a celibate forever.",
    "long_description": "Ujda Chaman is about a 30 -year-old bachelor Chaman Kohli, a Hindi lecturer with Premature Balding and in quest of a beautiful wife. After facing several rejections as a prospective groom because of his baldness, Chaman hits rock bottom when an astrologer gives him a deadline to find himself a wife or remain a celibate forever. This leads Chaman on a Funny and emotional roller coaster ride of self-discovery and acceptance.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 4706,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 1482728,
    "reviews_from_users": 259,
    "reviews_from_critics": 15,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTE3MzI2MTctNjE1ZC00ZmQ2LWFkMTktYTc1NTgyYjE2ODc3XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Aakash",
        "Abhilasha",
        "Aishwarya Sakhuja",
        "Anushka Sharma",
        "Atul Kumar",
        "Gagan Arora",
        "Grusha Kapoor",
        "Karishma Sharma",
        "Maanvi Gagroo",
        "Rajendra Chawla",
        "Sankalp Gupta",
        "Saurabh Shukla",
        "Sharib Hashmi",
        "Sunny Singh Nijjar",
        "Suparna Marwah"
    ],
    "directors": [
        "Abhishek Pathak",
        "Danish Singh"
    ],
    "writers": [
        "Danish Singh",
        "Raj B. Shetty"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Hindi"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Panorama Studios"
}