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

{
    "id": 18379,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18379?format=api",
    "title": "Settimo cielo",
    "original_title": "7th Heaven",
    "year": 1927,
    "date_published": "1928-01-30",
    "duration": 110,
    "description": "A street cleaner saves a young woman's life, and the pair slowly fall in love until war intervenes.",
    "long_description": "In Paris, in the early years of the twentieth century, lives Chico, a sewer worker with lofty aspirations. One night, Chico saves a young prostitute named Diane from the murderous rage of her tyrannical sister. Despite her lifestyle, Diane is honest and innocent, and when the police arrive to arrest her, Chico spontaneously claims that she is his wife. Forced to maintain this facade or else both face prison sentences, Chico reluctantly allows Diane to live with him -- and in the process, love gradually blossoms between them. However, the dark spectre of World War I has begun to descend upon France, and Chico and Diane cannot help but fall under its shadow.",
    "avg_vote": "7.6",
    "imdb_score": "7.6",
    "votes": 3154,
    "metascore": null,
    "budget": 1300000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 32,
    "reviews_from_critics": 34,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTk2MjUzMzk3OV5BMl5BanBnXkFtZTcwOTk1MjQxMw@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albert Gran",
        "Ben Bard",
        "Charles Farrell",
        "David Butler",
        "Emile Chautard",
        "George E. Stone",
        "Gladys Brockwell",
        "Janet Gaynor",
        "Marie Mosquini"
    ],
    "directors": [
        "Frank Borzage"
    ],
    "writers": [
        "Austin Strong",
        "Benjamin Glazer"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Frank Borzage Production"
}