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

{
    "id": 23634,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23634?format=api",
    "title": "Sono nato, ma...",
    "original_title": "Otona no miru ehon - Umarete wa mita keredo",
    "year": 1932,
    "date_published": "1932-06-03",
    "duration": 100,
    "description": "Two young brothers throw a tantrum when they discover that their father isn't the most important man in his workplace.",
    "long_description": "The Yoshi family - husband and wife Kennesuke and Haha, a middle manager at an office and a housewife respectively, and their two adolescent sons Keiji and Ryoichi - have just moved from the inner city to the suburbs of Tokyo, into the same neighborhood where Kennesuke's boss, Iwasaki, and his family live. The boys get off to a rocky start in their new neighborhood as they end up being bullied by a group of similarly aged boys, led by slightly bigger Kamekichi. Keiji and Ryoichi even secretly play hooky from school, not wanting to have to confront the bullies. After befriending Kozou, the older delivery boy at the local store who ends up being their protector of sorts, Keiji and Ryoichi are able to stand up to their tormentors to become the ones among the boys who call the shots. Their newfound pride takes a hit when they end up being at the same social gathering as their father and his coworkers at Iwasaki's house, and see that their father is a proverbial apple-polisher toward ...",
    "avg_vote": "8.0",
    "imdb_score": "8.0",
    "votes": 4875,
    "metascore": "91.0",
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 44,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZjg5YzhhMzItOTQ4Mi00YzM3LWE5NWUtZWMwYWI5OTVkNTViXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Akio Nomura",
        "Hideo Sugawara",
        "Kuniyasu Hayashi",
        "Masao Hayama",
        "Michio Sato",
        "Mitsuko Yoshikawa",
        "Seiichi Katô",
        "Seiji Nishimura",
        "Shôichi Kofujita",
        "Shôtarô Fujimatsu",
        "Takeshi Sakamoto",
        "Tatsuo Saitô",
        "Teruyo Hayami",
        "Tomio Aoki",
        "Zentaro Iijima"
    ],
    "directors": [
        "Yasujirô Ozu"
    ],
    "writers": [
        "Akira Fushimi",
        "Geibei Ibushiya"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "Japan"
    ],
    "languages": [
        "Japanese"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Shochiku"
}