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

{
    "id": 10905616,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10905616?format=api",
    "title": "Raja Vaaru Rani Gaaru",
    "original_title": "Raja Vaaru Rani Gaaru",
    "year": 2019,
    "date_published": "2019-11-29",
    "duration": 133,
    "description": "Raja Vaaru Rani Gaaru is the story of Raju who falls in love with Rani but is unable to express his emotions. Set in a beautiful village, watch as Raju and two of his friends deal with the toils and troubles of romance.",
    "long_description": "Set in a beautiful village, Raja (Kiran Abbavaram), a shy lover, who is in neck-deep love with his crush Rani (Rahasya Gorak). But his problem is that he cannot express his feelings to her. However, Rani leaves her village for higher studies for three and a half years. Depressed Raja waits for her return. Finally Rani comes back to her village and happily ends up with Raja. How does all this happen forms the main crux of the story.",
    "avg_vote": "7.5",
    "imdb_score": "7.6",
    "votes": 541,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 36,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOWNjZGI5YjAtODFhNS00NmUzLTkyN2ItMDE3M2FlNWYwNGJiXkEyXkFqcGdeQXVyMjk5MDYzMDA@._V1_UY268_CR177,0,182,268_AL_.jpg",
    "actors": [
        "Ajay",
        "Chotu Cherry",
        "Divya Narni",
        "Durga",
        "Kiran Abbavaram",
        "Kittayya",
        "Madhu",
        "Manovikas",
        "Mohan",
        "Prem Kishore",
        "Rahasya Gorak",
        "Rajkumar Kasireddy",
        "Srinivas Bogireddy",
        "Vegi Bhadram",
        "Yazurved Gurram"
    ],
    "directors": [
        "Ravi Kiran Kola"
    ],
    "writers": [
        "Ravi Kiran Kola"
    ],
    "genres": [
        "Romance"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Telugu"
    ],
    "rated": "Not rated or unkown rating",
    "company": "SL Entertainments"
}