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

{
    "id": 11023720,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11023720?format=api",
    "title": "Tenali Ramakrishna BA.BL",
    "original_title": "Tenali Ramakrishna BA.BL",
    "year": 2019,
    "date_published": "2019-11-15",
    "duration": 128,
    "description": "Tenali Ramakrishna (Sundeep Kishan) is a small-time lawyer who makes his living via compromises between warring parties. He is looking for a big case that could turn his life.",
    "long_description": "Tenali ramakrishna is an aspiring lawyer who looks for a life changing case take up in his career. He falls in love with Rukmini \"Hansika Motwani\". She is daughter of chakravarthi \"Murali sharma\". Chakravarthi is a well known criminal lawyer who takes up a murder case of Varalakshmi, instead of defending varalakshmi he joins hands with the opposition and conspires to convict her. Tenali finds out about this conspiracy and rest of movie is all about how he gets Varalakshmi out of the case.",
    "avg_vote": "5.0",
    "imdb_score": "4.9",
    "votes": 136,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": null,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZmIxZjdjZDUtMGQ0MC00YjRhLTliNmMtYzQ1ODZkMWJlMzBjXkEyXkFqcGdeQXVyNjc0NDc2MzI@._V1_UY268_CR44,0,182,268_AL_.jpg",
    "actors": [
        "Hansika Motwani",
        "Murli Sharma",
        "Sundeep Kishan",
        "Varalaxmi Sarathkumar",
        "Vennela Kishore"
    ],
    "directors": [
        "G. Nageswara Reddy"
    ],
    "writers": [
        "G. Nageswara Reddy",
        "Rajasimha"
    ],
    "genres": [
        "Action",
        "Comedy",
        "Drama"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Telugu"
    ],
    "rated": "Not rated or unkown rating",
    "company": "SNS Creations"
}