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

{
    "id": 8519,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/8519?format=api",
    "title": "A Romance of the Redwoods",
    "original_title": "A Romance of the Redwoods",
    "year": 1917,
    "date_published": "1917-05-14",
    "duration": 91,
    "description": "A young girl travels west to live with her uncle during the California Gold Rush only to find that he has been killed by Indians and his identity assumed by an outlaw.",
    "long_description": "'Black' Brown, a notorious road agent on the run from the law, stumbles on the body of John Lawrence, an honest prospector during the early years of the California Gold Rush, riddled with Indian arrows. Brown takes the dead man's clothes and papers and is able to pass himself off as a good citizen in 1850's Calaveras County. When Lawrence's sister dies, her daughter spends the little money she has to journey to California and live with her uncle. Arriving at the isolated cabin, she realizes he is an impostor, but his threats intimidate her into silence. Lacking money and protection, she immediately becomes vulnerable to the advances of the largely all-male population, and so must acknowledge Brown publicly as her uncle in order to continue to receive food, shelter, and his protection. Over time, this understanding of mutual convenience turns to affection, and he pledges to reform. When former members of his gang continue their dishonest ways, however, the now rehabilitated Brown falls...",
    "avg_vote": "5.7",
    "imdb_score": "5.8",
    "votes": 752,
    "metascore": null,
    "budget": 134832,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOTRiZjFlY2YtYmJmZC00ZjQ3LTg3MzItNDdlMjNiZGZkNjg3XkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Charles Ogle",
        "Elliott Dexter",
        "Mary Pickford",
        "Raymond Hatton",
        "Tully Marshall",
        "Walter Long",
        "Winter Hall"
    ],
    "directors": [
        "Cecil B. DeMille"
    ],
    "writers": [
        "Cecil B. DeMille",
        "Jeanie Macpherson"
    ],
    "genres": [
        "Adventure",
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Artcraft Pictures Corporation"
}