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

{
    "id": 22151,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22151?format=api",
    "title": "The Millionaire",
    "original_title": "The Millionaire",
    "year": 1931,
    "date_published": "1931-05-01",
    "duration": 80,
    "description": "A millionaire automaker retires upon the advice of his doctor, but becomes so bored he buys half interest in a gas station and works it on the sly.",
    "long_description": "Automaker James Alden is told to retire by his doctors and does so in deference to his wife Laura and daughter 'Babs.' He is not only bored after six months, but is told by a life insurance salesman that retired men are bad risks. So James secretly responds to an ad in the newspaper about a garage being for sale, but he (using the alias Charlie Miller) buys only half of the garage, since the other half was already sold to Bill Merrick, who becomes his partner. The ex-owner, Peterson, was dishonest in not revealing he was opening a new gas station near the new highway a mile down the road where most of the traffic will be. Not willing to be slickered by anybody, Charlie and Bill buy and elegantly rebuild a decrepit building across the street from Peterson's new station and compete handily with the charlatan. James uses a pretense to get away every day, but wonders how long he can keep up his double life.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 431,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 15,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BN2Y2NTc5YzUtOWYxNi00MzE2LTkxMWUtY2Y0YTA3ZTMyMTlhXkEyXkFqcGdeQXVyNjA5MTAzODY@._V1_UY268_CR11,0,182,268_AL_.jpg",
    "actors": [
        "Bramwell Fletcher",
        "Charles E. Evans",
        "Charley Grapewin",
        "David Manners",
        "Evalyn Knapp",
        "Florence Arliss",
        "George Arliss",
        "Ivan F. Simpson",
        "J. Farrell MacDonald",
        "J.C. Nugent",
        "James Cagney",
        "Noah Beery",
        "Sam Hardy",
        "Tully Marshall"
    ],
    "directors": [
        "John G. Adolfi"
    ],
    "writers": [
        "Booth Tarkington",
        "Earl Derr Biggers"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}