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

{
    "id": 21134,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21134?format=api",
    "title": "The Medicine Man",
    "original_title": "The Medicine Man",
    "year": 1930,
    "date_published": "1930-06-15",
    "duration": 66,
    "description": "The son and daughter of an abusive shopkeeper turn to a medicine show salesman for help.",
    "long_description": "Mamie and Buddy, the son and daughter of a cruel, abusive shopkeeper, are excited when Dr. Harvey's medicine show comes to town. But when they slip away at night to watch the show, their father finds out and punishes them severely. When the angry father then decides to force Mamie to marry against her will, she turns to Dr. Harvey for help. Meanwhile, two of the doctor's associates have been playing a confidence game, and have attracted the attention of the local sheriff.",
    "avg_vote": "5.0",
    "imdb_score": "5.0",
    "votes": 199,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 9,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTU3NjMyMzgxMl5BMl5BanBnXkFtZTcwOTMyNTgyMQ@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Adolph Milar",
        "Betty Bronson",
        "Billy Butts",
        "Caroline Rankin",
        "Dorothea Wolbert",
        "E. Alyn Warren",
        "Eva Novak",
        "George E. Stone",
        "Jack Benny",
        "Tom Dugan",
        "Vadim Uraneff"
    ],
    "directors": [
        "Scott Pembroke"
    ],
    "writers": [
        "Elliott Lester",
        "Ladye Horton"
    ],
    "genres": [
        "Comedy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Tiffany Productions"
}