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

{
    "id": 23681,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23681?format=api",
    "title": "Risveglio",
    "original_title": "West of Broadway",
    "year": 1931,
    "date_published": "1931-11-28",
    "duration": 68,
    "description": "Jerry Seevers returns from World War I service broken in health and his doctor tells him he has only six months to live. His fiancée jilts him and he sets out to drink himself to death. In ...",
    "long_description": "Jerry Seevers returns from World War I service broken in health and his doctor tells him he has only six months to live. His fiancée jilts him and he sets out to drink himself to death. In one of his binges he wakes up to find himself married to what the assumes is a gold-digger after his money. He leaves her and goes to a ranch in Arizona and get rid of his new bride, who is really in love with him. He sets up divorce proceedings and then realizes he actually loves her.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 565,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 14,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjIyMjM0NTMyNF5BMl5BanBnXkFtZTgwNDEzNjQ1MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "El Brendel",
        "Frank Conroy",
        "Gwen Lee",
        "Hedda Hopper",
        "John Gilbert",
        "John Miljan",
        "Lois Moran",
        "Madge Evans",
        "Ralph Bellamy",
        "Ruth Renick",
        "Willie Fung"
    ],
    "directors": [
        "Harry Beaumont"
    ],
    "writers": [
        "Bess Meredyth",
        "Ralph Graves"
    ],
    "genres": [
        "Drama",
        "Romance",
        "War"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}