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

{
    "id": 22100,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22100?format=api",
    "title": "M - Il mostro di Düsseldorf",
    "original_title": "M - Eine Stadt sucht einen Mörder",
    "year": 1931,
    "date_published": "1960-08-26",
    "duration": 117,
    "description": "When the police in a German city are unable to catch a child-murderer, other criminals join in the manhunt.",
    "long_description": "In Germany, Hans Beckert is an unknown killer of girls. He whistles Edvard Grieg's 'In The Hall of the Mountain King', from the 'Peer Gynt' Suite I Op. 46 while attracting the little girls for death. The police force pressed by the Minister give its best effort trying unsuccessfully to arrest the serial killer. The organized crime has great losses due to the intense search and siege of the police and decides to chase the murderer, with the support of the beggars association. They catch Hans and briefly judge him.",
    "avg_vote": "8.3",
    "imdb_score": "8.3",
    "votes": 141942,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 35566,
    "worldwide_gross_income": 35566,
    "reviews_from_users": 359,
    "reviews_from_critics": 155,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODA4ODk3OTEzMF5BMl5BanBnXkFtZTgwMTQ2ODMwMzE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Ellen Widmann",
        "Ernst Stahl-Nachbaur",
        "Franz Stein",
        "Friedrich Gnaß",
        "Fritz Odemar",
        "Georg John",
        "Gerhard Bienert",
        "Gustaf Gründgens",
        "Inge Landgut",
        "Otto Wernicke",
        "Paul Kemp",
        "Peter Lorre",
        "Rudolf Blümner",
        "Theo Lingen",
        "Theodor Loos"
    ],
    "directors": [
        "Fritz Lang"
    ],
    "writers": [
        "Fritz Lang",
        "Thea von Harbou"
    ],
    "genres": [
        "Crime",
        "Mystery",
        "Thriller"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Nero-Film AG"
}