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

{
    "id": 20686,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20686?format=api",
    "title": "Carcere",
    "original_title": "The Big House",
    "year": 1930,
    "date_published": "1930-06-14",
    "duration": 87,
    "description": "A convict falls in love with his new cellmate's sister, only to become embroiled in a planned break-out which is certain to have lethal consequences.",
    "long_description": "After a manslaughter conviction from drunk driving, nice but foolish Kent is sent to a prison over-crowded and unable to properly deal with it's inmates. There he meets veteran criminals like Morgan and his hardened pal Butch. And the system punishes them all, turning them against each other and bringing out the worst.",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 1872,
    "metascore": null,
    "budget": 414000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 24,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNjBjMmU2NjQtOGJlYS00OTE4LWE4ZjYtNzlmMzJhYmE5MjA5L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Chester Morris",
        "Claire McDowell",
        "DeWitt Jennings",
        "Eddie Foyer",
        "George F. Marion",
        "J.C. Nugent",
        "Karl Dane",
        "Leila Hyams",
        "Lewis Stone",
        "Matthew Betz",
        "Robert Emmett O'Connor",
        "Robert Montgomery",
        "Tom Kennedy",
        "Tom Wilson",
        "Wallace Beery"
    ],
    "directors": [
        "George W. Hill",
        "Ward Wing"
    ],
    "writers": [
        "Frances Marion",
        "Joseph Farnham"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Thriller"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Russian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}