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

{
    "id": 20815,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20815?format=api",
    "title": "La squadriglia dell'aurora",
    "original_title": "The Dawn Patrol",
    "year": 1930,
    "date_published": "1930-08-20",
    "duration": 108,
    "description": "World War I ace Dick Courtney derides the leadership of his superior officer, but Courtney is soon promoted to squadron commander and learns harsh lessons about sending subordinates to their deaths.",
    "long_description": "During the First World War, British combat pilot Dick Courtney mocks his commanding officer Major Brand for being too cautious, unaware that Brand is tormented by the requirement of his command that he send young men to their likely deaths in substandard aircraft and with insufficient training. When Brand is transferred, Courtney becomes the commanding officer and quickly realizes the burden Brand labored under. When Courtney's best friend, Douglas Scott, asks him to spare his newly arrived and inexperienced brother Gordon Scott from combat duty, Courtney cannot justify doing so. A rift grows between the friends as Courtney realizes the tragic demands of his job.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 1616,
    "metascore": null,
    "budget": 611722,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 20,
    "reviews_from_critics": 22,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDUzZWYxMTMtOWUwNi00N2MzLWEyZDAtYzc2Nzc5MWIzMTJkXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Clyde Cook",
        "Douglas Fairbanks Jr.",
        "Edmund Breon",
        "Frank McHugh",
        "Gardner James",
        "James Finlayson",
        "Neil Hamilton",
        "Richard Barthelmess",
        "William Janney"
    ],
    "directors": [
        "Howard Hawks"
    ],
    "writers": [
        "Dan Totheroh",
        "John Monk Saunders"
    ],
    "genres": [
        "Action",
        "Drama",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}