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

{
    "id": 23450,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23450?format=api",
    "title": "Dove sono finiti i sogni di gioventù",
    "original_title": "Seishun no yume ima izuko",
    "year": 1932,
    "date_published": "1932-10-13",
    "duration": 92,
    "description": "When a young man inherits his father's lucrative business, he cheats the system to set up three of his college friends with jobs.",
    "long_description": "Friends Tetsuo Horino, Taichirô Saiki, Kumada and Shimazaki are college students. Saiki is somewhat the outlier in that he comes from a poor background, and while all four are doing poorly in their studies, Saiki at least places some effort into them in realizing that he is the hope of his mother for a life other than poverty. They are only able to get passing grades by helping each other cheat on exams. The four like to hang out at the bakery across the street from the college largely because of Shigeko, who works there, she who they consider the unofficial fifth in their group. While each is romantically interested in her, they have an unspoken pact not to go there with her in sharing her equally as a friend. One of the banes of Tetsuo's existence is his paternal uncle, Kanzô Horino, always trying to play matchmaker, the women he choosing for Tetsuo in who he has no interest as seeing many of them as gold-diggers, with his father, Kanzô's brother Kenzô Horino, helping Tetsuo come up...",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 506,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 2,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjVhYTE3YWQtNjQ1OC00YWYwLWEzZGEtM2VjOWJmOGI5ODU1XkEyXkFqcGdeQXVyMjA1NjU0NTc@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Ayako Katsuragi",
        "Chishû Ryû",
        "Chôko Iida",
        "Harurô Takeda",
        "Kaoru Futaba",
        "Kenji Ôyama",
        "Kikuko Hanaoka",
        "Kinuyo Tanaka",
        "Ryôtarô Mizushima",
        "Satoko Date",
        "Takeshi Sakamoto",
        "Tatsuo Saitô",
        "Ureo Egawa"
    ],
    "directors": [
        "Yasujirô Ozu"
    ],
    "writers": [
        "Kôgo Noda"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Japan"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Shochiku"
}