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

{
    "id": 23293,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23293?format=api",
    "title": "The Old Dark House",
    "original_title": "The Old Dark House",
    "year": 1932,
    "date_published": "1932-10-20",
    "duration": 72,
    "description": "Seeking shelter from a storm, five travelers are in for a bizarre and terrifying night when they stumble upon the Femm family estate.",
    "long_description": "Seeking shelter from a pounding rainstorm in a remote region of Wales, several travellers are admitted to a gloomy, foreboding mansion belonging to the extremely strange Femm family. Trying to make the best of it, the guests must deal with their sepulchral host, Horace Femm and his obsessive, malevolent sister Rebecca. Things get worse as the brutish manservant Morgan gets drunk, runs amuck and releases the long pent-up brother Saul, a psychotic pyromaniac who gleefully tries to destroy the residence by setting it on fire.",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 9254,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 25678,
    "worldwide_gross_income": 34649,
    "reviews_from_users": 145,
    "reviews_from_critics": 107,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYzI5MTRjYWQtN2U2ZS00ZDZiLTlkYWQtOTgwZGFlYTA0NTZjXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Boris Karloff",
        "Brember Wills",
        "Charles Laughton",
        "Elspeth Dudgeon",
        "Ernest Thesiger",
        "Eva Moore",
        "Gloria Stuart",
        "Lilian Bond",
        "Melvyn Douglas",
        "Raymond Massey"
    ],
    "directors": [
        "James Whale"
    ],
    "writers": [
        "Benn W. Levy",
        "J.B. Priestley"
    ],
    "genres": [
        "Comedy",
        "Horror",
        "Thriller"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universal Pictures"
}