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

{
    "id": 11344598,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11344598?format=api",
    "title": "Alidu Ulidavaru",
    "original_title": "Alidu Ulidavaru",
    "year": 2019,
    "date_published": "2019-12-06",
    "duration": 122,
    "description": "A popular TV show host and myth-buster of superstitions who is working on the 100th episode of his show, is caught in the whirlwind of numbers, TRPs and relationships as he uncovers the secret that haunts him.",
    "long_description": "The film follows a popular TV host and a Bonafide myth buster of superstition, through his journey of making the 100th episode for his show. Caught in the business of numbers, TRPs and relationship tangles, what haunts him is uncovered in this fantastical psychological thriller.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 175,
    "metascore": null,
    "budget": 40000000,
    "budget_currency": "INR",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZDk2ODJhOTEtNDQ5Ny00YWQ0LThkMjctYjFhMGQ2ZGQ5NjBmXkEyXkFqcGdeQXVyODk4NTI4NDA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ankita",
        "Ashu Bedra",
        "Atul Kulkarni",
        "B. Suresh",
        "Dhanesh Koliyat",
        "Dharmanna Kadur",
        "Dinesh Mangaluru",
        "Maya Dharani",
        "Nanda Gopal",
        "Pawan Kumar",
        "Pranaya Murthy",
        "Ravi Bhat",
        "Sangeetha Bhat",
        "Swathi Gurudath",
        "Venkat Bharadwaj"
    ],
    "directors": [
        "Arvind Sastry"
    ],
    "writers": [
        "Bhat Pavan",
        "Praveen Kumar G"
    ],
    "genres": [
        "Thriller"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Kannada"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Ashu Bedra Venture"
}