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

{
    "id": 10987184,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10987184?format=api",
    "title": "Petromax",
    "original_title": "Petromax",
    "year": 2019,
    "date_published": "2019-10-11",
    "duration": 128,
    "description": "A man struggles to sell his house that is haunted so he arranges four people to live in the house for a few days to prove that there are no ghosts.",
    "long_description": "A man struggles to sell his house that is haunted so he arranges four people to live in the house for a few days to prove that there are no ghosts.",
    "avg_vote": "5.5",
    "imdb_score": "5.4",
    "votes": 291,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 13955,
    "reviews_from_users": 12,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZGNiOGI2YTAtYWY2NC00N2I0LTk2YWMtZTZhYTZmNGM4OGI1XkEyXkFqcGdeQXVyOTk3NTc2MzE@._V1_UY268_CR7,0,182,268_AL_.jpg",
    "actors": [
        "K.S.G. Venkatesh",
        "Kaali Venkat",
        "Kavin Jaya Babu",
        "Mahanadhi Shankar",
        "Mime Gopi",
        "Monekha Siva",
        "Munishkanth",
        "Nandhini",
        "Pei Krishnan",
        "Prem Kumar",
        "Sathyan",
        "Sreeja Ravi",
        "Tamannaah Bhatia",
        "Tsk",
        "Yogi Babu"
    ],
    "directors": [
        "Rohin Venkatesan"
    ],
    "writers": [
        "G.R. Surendarnath",
        "Mahi v Raghav"
    ],
    "genres": [
        "Comedy",
        "Horror"
    ],
    "countries": [
        "India"
    ],
    "languages": [
        "Tamil"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Eagle's Eye Production"
}