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

{
    "id": 10801042,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10801042?format=api",
    "title": "Love Aaj Kal Porshu",
    "original_title": "Love Aaj Kal Porshu",
    "year": 2020,
    "date_published": "2020-02-14",
    "duration": 105,
    "description": "Two people whose love is a force that can never be changed, no matter how much its surroundings may change. A unique take on the timelessness of romance.",
    "long_description": "Two people whose love is a force that can never be changed, no matter how much its surroundings may change. A unique take on the timelessness of romance.",
    "avg_vote": "6.1",
    "imdb_score": "6.0",
    "votes": 280,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 141918,
    "reviews_from_users": 8,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNmQzMzBlOTgtZjYzYy00OGVjLTg1ZDMtNTE2NWU1MDM1ZDZjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Abhijit Guha",
        "Anindita Bose",
        "Anirban Chakrabarti",
        "Aniruddha Chakladar",
        "Arjun Chakraborty",
        "Chirantan Mukherjee",
        "Indira Dutta Chowdhury",
        "Kunal Chakraborty",
        "Madhumita Sarcar",
        "Paoli Dam",
        "Prasantha Das Gupta",
        "Rabindranath Jana",
        "Sumana Das",
        "Tushar Padihar"
    ],
    "directors": [
        "Pratim D. Gupta"
    ],
    "writers": [
        "Pratim D. Gupta"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Bengali"
    ],
    "rated": "Not rated or unkown rating",
    "company": "SVF Entertainment"
}