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

{
    "id": 16884,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16884?format=api",
    "title": "La carne e il diavolo",
    "original_title": "Flesh and the Devil",
    "year": 1926,
    "date_published": "1926-12-25",
    "duration": 112,
    "description": "Childhood friends are torn apart when one of them marries the woman the other once fiercely loved.",
    "long_description": "Leo and Ulrich are life long friends. Home, on leave from their military training, Leo sees the beautiful Felicitas at the railroad station. Awed by her beauty, they meet again at the ball and quietly leave together. In her room, her husband, about whom she has neglected to inform Leo, comes in and challenges Leo to a duel. The duel is done, the Count is killed and Felicitas is a widow. Leo, however, is 'requested' to serve 5 years in Africa and he tells Ulrich to watch over Felicitas while he is gone. After 3 years, Ulrich is able to get a pardon for Leo and all that Leo thinks about on the way home is Felicitas. When he arrives, he learns that Felicitas has married Ulrich. Felicitas likes that Ulrich is rich and she never told Ulrich the truth about Leo and her. Leo is crushed and does not visit them which saddens Ulrich as he does not know the reason why. Leo tries to stay away from her, but Felicitas uses every opportunity to tempt him to return to her as her lover. She creating a...",
    "avg_vote": "7.6",
    "imdb_score": "7.6",
    "votes": 3945,
    "metascore": null,
    "budget": 373000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 39,
    "reviews_from_critics": 28,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWYzZjA1MWEtOGUxZi00ZjUxLTg0YTAtZGUxNDc2MmQxM2JjXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Barbara Kent",
        "Eugenie Besserer",
        "George Fawcett",
        "Greta Garbo",
        "John Gilbert",
        "Lars Hanson",
        "Marc McDermott",
        "Marcelle Corday",
        "William Orlamond"
    ],
    "directors": [
        "Clarence Brown"
    ],
    "writers": [
        "Benjamin Glazer",
        "Hermann Sudermann"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}