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

{
    "id": 10883506,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10883506?format=api",
    "title": "A Sun",
    "original_title": "Yang guang pu zhao",
    "year": 2019,
    "date_published": "2019-11-01",
    "duration": 156,
    "description": "A family of four fractures under the weight of unmet expectations, unexpected tragedy, and uncompromising pride.",
    "long_description": "A Sun follows a troubled family of four. A-Ho, the younger son, has always been a problematic child, and his father, A-Wen has invested all his hopes and expectations in his introverted eldest son, A-Hao. While A-Hao is trying to get into medical school, A-Ho faces juvenile detention for a crime committed with his best friend - although not entirely of his own will. A-Wen abandons A-Ho, refusing to help and even requesting the judge to sentence his son as harshly as possible. Not long after A-Ho is sent to prison, to make matters worse, his girlfriend shows up on his mother Qin's doorstep. The teenage girl is pregnant and determined to have A-Ho's child, even though he is locked up and has no idea she is expecting.",
    "avg_vote": "7.6",
    "imdb_score": "7.6",
    "votes": 3038,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 16,
    "reviews_from_critics": 17,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDRiNTNjMDktZmQ4Yy00NmRiLTg2NTItNDg4MTZmNTk0ZmJjXkEyXkFqcGdeQXVyMjg0MTI5NzQ@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Apple Wu",
        "Chen-Ling Wen",
        "Chien-Ho Wu",
        "Chih-Ju Lin",
        "Danny Deng",
        "Greg Han Hsu",
        "Han Chang",
        "Ivy Yin",
        "Kuan-Ting Liu",
        "Li-Tung Chang",
        "Ming-Shuai Shih",
        "Samantha Shu-Chin Ko",
        "Shao-Huai Chang",
        "Shao-hua Lung",
        "Yi-wen Chen"
    ],
    "directors": [
        "Mong-Hong Chung"
    ],
    "writers": [
        "Mong-Hong Chung",
        "Yaosheng Chang"
    ],
    "genres": [
        "Crime",
        "Drama"
    ],
    "countries": [
        "Taiwan"
    ],
    "languages": [
        "Mandarin"
    ],
    "rated": "Not rated or unkown rating",
    "company": "3 Ng Film"
}