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

{
    "id": 22259,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22259?format=api",
    "title": "Peach O'Reno",
    "original_title": "Peach O'Reno",
    "year": 1931,
    "date_published": "1931-12-25",
    "duration": 63,
    "description": "After a quarrell at their 25th wedding aniversery, Joe and Aggie Bruno decide to divorce each other, and both leave for Reno. So do their daughters Prudence and Pansy, but they want to get ...",
    "long_description": "After a quarrell at their 25th wedding aniversery, Joe and Aggie Bruno decide to divorce each other, and both leave for Reno. So do their daughters Prudence and Pansy, but they want to get their parents back to gether. Joe and Aggie, accidentally, are becoming clients at the same lawfirm, Wattles and Swift, which is the biggest and most succesful in town. But being on the opposide sides in the same case is not the only problem for Wattles and Swift, the cocurring lawfirm Jackson, Jackson, Jackson and Jackson, has started a price war and one of its member has just been appointed judge, furthermore, there's Ace Crosby, whose ex-wife got her divorce with the help of Wattles and Swift, who vowed to shoot Wattles for this. Wattles disguises as widow Hanover, Joe's co-respondent. Crosby, waiting at the office-turned-casino, wins too much at the pokertable, so Wattles tries to lure him away, after he and Joe have beem seen by Aggie. Aggie, who has met Judge Jackson, who told her that she and...",
    "avg_vote": "6.7",
    "imdb_score": "6.8",
    "votes": 209,
    "metascore": null,
    "budget": 293000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 9,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWYxZWM2M2ItNjdhOS00NWY5LWE4NzgtMTIwMDE0ZGVhN2ZhXkEyXkFqcGdeQXVyMTY5MDE5NA@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Hoyt",
        "Bert Wheeler",
        "Cora Witherspoon",
        "Dorothy Lee",
        "Joseph Cawthorn",
        "Josephine Whittell",
        "Mitchell Harris",
        "Robert Woolsey",
        "Sam Hardy",
        "Zelma O'Neal"
    ],
    "directors": [
        "William A. Seiter"
    ],
    "writers": [
        "Ralph Spence",
        "Tim Whelan"
    ],
    "genres": [
        "Comedy",
        "Musical",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}