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

{
    "id": 10981202,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10981202?format=api",
    "title": "Her blue sky",
    "original_title": "Sora no aosa o shiru hito yo",
    "year": 2019,
    "date_published": "2019-10-11",
    "duration": 106,
    "description": "Second-year high school student Aoi Aioi is an aspiring musician Aoi Aioi. Her older sister Akane's ex-boyfriend Shinnosuke Kanomura is a struggling guitarist. Aoi and Akane's parents ...",
    "long_description": "Second-year high school student Aoi Aioi is an aspiring musician Aoi Aioi. Her older sister Akane's ex-boyfriend Shinnosuke Kanomura is a struggling guitarist. Aoi and Akane's parents passed away in an accident 13 years ago, and Akane gave up her ambition of going to Tokyo with Shinnosuke to take care of Aoi. Since then, Aoi has felt indebted to her older sister. One day, she is invited to perform at a music festival as a session musician by a famous en singer named Dankichi. At the same time, Shinnosuke returns to Aoi and Akane's town after a long time away. Then, Shinno mysteriously appears- who is actually Shinnosuke from 13 years ago after traveling from the past to the present-and Aoi falls in love for the first time.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 394,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 4736031,
    "reviews_from_users": 5,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNWE5NGQ4ZTgtNzBhZC00ZTc2LTg0NjQtZmM4YmYzM2U2ODhhXkEyXkFqcGdeQXVyMzgxODM4NjM@._V1_UY268_CR7,0,182,268_AL_.jpg",
    "actors": [
        "Atsumi Tanezaki",
        "Ken Matsudaira",
        "Riho Yoshioka",
        "Ryô Yoshizawa",
        "Shion Wakayama",
        "You Taichi"
    ],
    "directors": [
        "Tatsuyuki Nagai"
    ],
    "writers": [
        "Unknown"
    ],
    "genres": [
        "Animation",
        "Drama",
        "Family"
    ],
    "countries": [
        "Japan"
    ],
    "languages": [
        "Japanese"
    ],
    "rated": "Not rated or unkown rating",
    "company": "CloverWorks"
}