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

{
    "id": 10843306,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10843306?format=api",
    "title": "The Beach House",
    "original_title": "The Beach House",
    "year": 2019,
    "date_published": "2020-07-09",
    "duration": 88,
    "description": "A romantic getaway for two troubled college sweethearts turns into a struggle for survival when unexpected guests - and the surrounding environment - exhibit signs of a mysterious infection.",
    "long_description": "A young couple head to a beach house to spend some quality time and finds it peaceful when they don't encounter any neighbors around. Their quality time is interrupted by the arrival of unexpected guests and as if that wasn't bad enough, a mysterious fog along with a mysterious infection is slowly spreading around.",
    "avg_vote": "5.4",
    "imdb_score": "5.3",
    "votes": 3822,
    "metascore": "64.0",
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 66,
    "reviews_from_critics": 99,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZmU0ZWI5M2YtYjBkZS00MjRiLThiNDQtNDZlZjE3ZjAxYTY0XkEyXkFqcGdeQXVyMjg0NjcyNA@@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Dan Zakarija",
        "Jake Weber",
        "Liana Liberato",
        "Maryann Nagel",
        "Matt Maisto",
        "Michael Brumfield",
        "Noah Le Gros",
        "Steven Corkin",
        "Veronica Fellman"
    ],
    "directors": [
        "Jeffrey A. Brown"
    ],
    "writers": [
        "Jeffrey A. Brown"
    ],
    "genres": [
        "Drama",
        "Horror",
        "Mystery"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Low Spark Films"
}