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

{
    "id": 8652,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/8652?format=api",
    "title": "A Tale of Two Cities",
    "original_title": "A Tale of Two Cities",
    "year": 1917,
    "date_published": "1917-03-11",
    "duration": 70,
    "description": "Alcoholic lawyer Sydney Carton travels to Paris during the Reign of Terror to rescue French aristocrat Charles Darnay, husband of the woman he loves.",
    "long_description": "Charles Darnay is the nephew of the Marquis St. Evremonde in pre-Revolutionary France, but disagrees with the French feudal system and emigrates to England, where he is falsely accuses him of being a spy. He is found innocent through the skill of Sydney Carton, an alcoholic English barrister. Darnay is supported by beautiful Lucy Manette, whom he met on the trip across the Channel, and her father, Doctor Manette, a victim of the aristocracy unjustly imprisoned for many years in the Bastille. Carton falls in love with Lucy, but she loves Darnay and subsequently marries him. Carton's love remains unrequited, but it propels him to sobriety. After Darnay is tricked into returning to France during the Reign of Terror and subsequently sentenced to death by a revolutionary tribunal, it falls to Carton to save his romantic rival's life.",
    "avg_vote": "6.0",
    "imdb_score": "6.0",
    "votes": 110,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 6,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNjJkOTRlOTAtZjQ5Ni00NjEzLWI0NDctYjczYTk5MmIzNTQ2XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Charles Clary",
        "Florence Vidor",
        "Harry De Vere",
        "Herschel Mayall",
        "James Morrison",
        "Jewel Carmen",
        "Josef Swickard",
        "Marc B. Robbins",
        "Olive White",
        "Ralph Lewis",
        "Rosita Marstini",
        "Willard Louis",
        "William Clifford",
        "William Farnum"
    ],
    "directors": [
        "Frank Lloyd"
    ],
    "writers": [
        "Charles Dickens",
        "Frank Lloyd"
    ],
    "genres": [
        "Drama",
        "History",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fox Film Corporation"
}