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

{
    "id": 22485,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22485?format=api",
    "title": "Il coro di Tokyo",
    "original_title": "Tôkyô no kôrasu",
    "year": 1931,
    "date_published": "1931-08-15",
    "duration": 90,
    "description": "A married Tokyo man faces unemployment after standing up for an older colleague.",
    "long_description": "Mr. Omura, a teacher, leads a group of male students in an outdoor drill. One slight, comic young man, Shinji Okajima, has no shirt under his jacket; he scratches at fleas and makes faces behind Omura's back. Jump ahead several years, Shinji is married with three children. He sells insurance, and on the company's annual bonus day, he protests when an older worker is fired. Shinji loses his own job as a result, and he and his wife must find ways to cope. Lassitude, pride, the demands and needs of young children, and relationships from bygone school days all play a part in the outcome of their struggle.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 1243,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 13,
    "reviews_from_critics": 20,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZjVmZTkzNjgtYWJhOS00OTNmLTgxM2MtN2E1MzgyNjNlNWRlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Chôko Iida",
        "Emiko Yagumo",
        "Hideko Takamine",
        "Hideo Sugawara",
        "Isamu Yamaguchi",
        "Ken'ichi Miyajima",
        "Reikô Tani",
        "Takeshi Sakamoto",
        "Tatsuo Saitô",
        "Tokihiko Okada"
    ],
    "directors": [
        "Yasujirô Ozu"
    ],
    "writers": [
        "Komatsu Kitamura",
        "Kôgo Noda"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "Japan"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Shochiku Kinema"
}