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

{
    "id": 24120,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24120?format=api",
    "title": "La donna della retata",
    "original_title": "Hijôsen no onna",
    "year": 1933,
    "date_published": "1933-04-27",
    "duration": 100,
    "description": "A gangster tries to find redemption with the inadvertent help of an innocent shop girl and his jealous girlfriend will do anything to keep him.",
    "long_description": "Tokiko is an office typist who is more pleased at catching the owner's son attention than he knows. That's because her real boyfriend is Joji, a washed up boxer turned gangster and her employer is a great opportunity to milk him for them both. However, when Kazuko, the innocent sister of Hiroshi, a hopeful new member of the gang, comes to Joji to plead with him to send Hiroshi away, the gangster is warmly affected by her. However, Tokiko is jealous and determined to win Joji back no matter what the cost while Joji has his own decisions to make about his life.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 669,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 9,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZTdlMThiZDAtMTZhNy00ZDZjLTkzYzUtNWU2ZTBkZWI5OTNjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Chishû Ryû",
        "Jôji Oka",
        "Kinuyo Tanaka",
        "Koji Kaga",
        "Kôji Mitsui",
        "Nobuo Takemura",
        "Reikô Tani",
        "Seiji Nishimura",
        "Shunsaku Kashima",
        "Sumiko Mizukubo",
        "Yasuo Nanjo",
        "Yoshio Takayama",
        "Yumeko Aizome"
    ],
    "directors": [
        "Yasujirô Ozu"
    ],
    "writers": [
        "Tadao Ikeda",
        "Yasujirô Ozu"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "Japan"
    ],
    "languages": [
        "Japanese"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Shochiku"
}