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

{
    "id": 19585,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19585?format=api",
    "title": "Il vento",
    "original_title": "The Wind",
    "year": 1928,
    "date_published": "1929-01-01",
    "duration": 95,
    "description": "A frail young woman from the east moves in with her cousin in the west, where she causes tension within the family and is slowly driven mad.",
    "long_description": "Innocent and naive Letty Mason moves from her Virginia home to Sweet Water on the western prairies to live on the ranch of her cousin Beverly, his wife Cora and their three children. Letty quickly learns how inhospitable the environment in Sweet Water is, the most obvious item being the incessant wind. But equally inhospitable are the unrefined way the people in Sweet Water live to which she is unaccustomed, and Cora, who believes Letty has come to steal Beverly away from her. As such, Cora orders Letty out of her and Bev's house. With no money, Letty is forced to accept one of the marriage proposal she receives, the lesser evil being that from Bev and Cora's ranching neighbor, Lige Hightower, a man who she does not love. Despite a less than harmonious start, Letty, in part due to her isolation as she is more often than not forced to stay inside due to the wind, begins to have affection for Lige, who wants to do right by her, and who promises to send her back to Virginia when he is ...",
    "avg_vote": "8.0",
    "imdb_score": "8.0",
    "votes": 6021,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 49,
    "reviews_from_critics": 31,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTI3YjJmMjMtN2I3Mi00YWUwLThmNTctN2NjNjgwNmFlNGRiXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Billy Kent Schaefer",
        "Carmencita Johnson",
        "Dorothy Cumming",
        "Edward Earle",
        "Lars Hanson",
        "Leon Janney",
        "Lillian Gish",
        "Montagu Love",
        "William Orlamond"
    ],
    "directors": [
        "Victor Sjöström"
    ],
    "writers": [
        "Dorothy Scarborough",
        "Frances Marion"
    ],
    "genres": [
        "Drama",
        "Romance",
        "Thriller"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}