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

{
    "id": 21874,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21874?format=api",
    "title": "Five and Ten",
    "original_title": "Five and Ten",
    "year": 1931,
    "date_published": "1931-06-13",
    "duration": 89,
    "description": "After her businessman father moves her family from Kansas City to New York, a woman falls in love with an engaged man.",
    "long_description": "In self-made becoming the third wealthiest merchant in the world through a five-and-dime empire, John Rarick, from a humble background, moves his family - wife Jenny, and young adult offspring Jennifer and Avery - from their happy home in Kansas City to New York City. In his quest for more and more money, John ends up neglecting the family without realizing it. Lonely, Jenny ends up embarking on an affair. Jennifer is shunned by the old money social class in being nouveau riche, especially with the money coming from something as sordid as a five-and-dime business. Jennifer tries to buy her way in wanting to make friends with these people. The one person who does notice Jennifer in a romantic sense is up and coming architect Berry Rhodes, who is already engaged to Muriel Preston, a childhood friend who is the chief person keeping Jennifer out of their social circle. Trying to buy her way in may not sit well with any of them if they do find out, especially Berry in wanting their love to...",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 1266,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 16,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDk4ODI3ZDYtOGNmYS00ZDA3LWJlZTMtMDZkOTI4MTdjNjZkXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Douglass Montgomery",
        "Irene Rich",
        "Leslie Howard",
        "Marion Davies",
        "Mary Duncan",
        "Richard Bennett"
    ],
    "directors": [
        "Robert Z. Leonard"
    ],
    "writers": [
        "Andrew Percival Younger",
        "Fannie Hurst"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Cosmopolitan Productions"
}