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

{
    "id": 23305,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23305?format=api",
    "title": "Amanti senza domani",
    "original_title": "One Way Passage",
    "year": 1932,
    "date_published": "1932-10-22",
    "duration": 67,
    "description": "A terminally ill woman and a debonair murderer facing execution meet and fall in love on a trans-Pacific crossing, each without knowing the other's secret.",
    "long_description": "Suave Dan Hardesty, a convicted murderer, is apprehended by Steve Burke, a police detective, in Hong Kong and accompanied on the SS Maloa headed for San Francisco. On board, Dan romances Joan Ames, a terminally ill socialite. She is unaware that his ultimate destination is San Quentin. Both realize that their time together is fleeting so they make a pact to meet at a Mexican night club on New Years Eve. When they part in San Francisco they know that the odds are against them.",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 3378,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 52,
    "reviews_from_critics": 20,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWI1OWFmNWItMzQ3My00ODQzLTliMTMtN2YyOTY0NWRmZDU2XkEyXkFqcGdeQXVyNTcwNjUwNzk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Aline MacMahon",
        "Frank McHugh",
        "Frederick Burton",
        "Kay Francis",
        "Warren Hymer",
        "William Powell"
    ],
    "directors": [
        "Tay Garnett"
    ],
    "writers": [
        "Joseph Jackson",
        "Wilson Mizner"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}