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

{
    "id": 19823,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19823?format=api",
    "title": "Disraeli",
    "original_title": "Disraeli",
    "year": 1929,
    "date_published": "1929-11-01",
    "duration": 90,
    "description": "Prime Minister of Great Britain Benjamin Disraeli outwits the subterfuge of the Russians and chicanery at home in order to secure the purchase of the Suez Canal.",
    "long_description": "Biopic of the famed British Prime Minister focusing on his concern about Russia's growing interest in the Indian subcontinent and his attempts to buy the Suez Canal. He sees the Canal as the key strategic resource in maintaining the Empire in the East but is unpopular in many quarters. With antisemitism rife at the time, Disraeli finds little support for his plan to purchase the canal or his foreign policy in general. There is no doubt that the Russians are plotting against British interests and he is surrounded by spies, even in his office at 10 Downing St. When the Bank of England refuses to finance the purchase of the available shares he turns to private sources to raise the available cash only to find the conspirators one step ahead of him.",
    "avg_vote": "6.2",
    "imdb_score": "6.1",
    "votes": 1045,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 24,
    "reviews_from_critics": 17,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTc1NTAxOTExMV5BMl5BanBnXkFtZTgwMDk1MjgwMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Anthony Bushell",
        "David Torrence",
        "Doris Lloyd",
        "Florence Arliss",
        "George Arliss",
        "Joan Bennett",
        "Michael Visaroff"
    ],
    "directors": [
        "Alfred E. Green"
    ],
    "writers": [
        "Julien Josephson"
    ],
    "genres": [
        "Biography",
        "Drama",
        "History"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}