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

{
    "id": 8150,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/8150?format=api",
    "title": "Joan the Woman",
    "original_title": "Joan the Woman",
    "year": 1916,
    "date_published": "1916-12-25",
    "duration": 138,
    "description": "A WWI English officer is inspired the night before a dangerous mission by a vision of Joan of Arc, whose story he relives.",
    "long_description": "John Trent, a World War I British officer, finds an ancient sword in his trench bunker just prior to volunteering for what will amount to a suicide mission the next day. That night he is visited by the spirit of Joan of Arc and is transported back to the 15th Century. Joan's career begins when, as a peasant girl, she meets Trent's ancestor, also an English soldier, fighting for the Burgundians. After Trent is captured, Joan is brought to the attention of the beleaguered Dauphin, heir to the French throne, who cannot be crowned because the English hold the royal city of Orleans. The weak Dauphin is impressed by her vision and apparently heaven-sent powers which border on the supernatural and ultimately gives her command of the armies. She is victorious at Orleans and the new King is crowned. Joan resists Trent's entreaties of love and continues her struggle to free the rest of her country from English occupation. Sinister forces, both English and French, conspire against her and she is...",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 509,
    "metascore": null,
    "budget": 302976,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 17,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTc1NjY5MTY3M15BMl5BanBnXkFtZTgwMzM0NDAwMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Charles Clary",
        "Cleo Ridgely",
        "Ernest Joy",
        "Geraldine Farrar",
        "Hobart Bosworth",
        "Horace B. Carpenter",
        "James Neill",
        "John Oaker",
        "Lawrence Peyton",
        "Lillian Leighton",
        "Marjorie Daw",
        "Raymond Hatton",
        "Theodore Roberts",
        "Tully Marshall",
        "Wallace Reid"
    ],
    "directors": [
        "Cecil B. DeMille"
    ],
    "writers": [
        "Jeanie Macpherson",
        "William C. de Mille"
    ],
    "genres": [
        "Adventure",
        "Drama",
        "History"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}