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

{
    "id": 16804,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16804?format=api",
    "title": "Don Juan",
    "original_title": "Don Juan",
    "year": 1926,
    "date_published": "1927-02-19",
    "duration": 110,
    "description": "In 16th Century Italy, devil-may-care playboy Don Juan runs afoul of the despotic Borgias.",
    "long_description": "If there was one thing that Don Juan de Marana learned from his father Don Jose, it was that women gave you three things - life, disillusionment and death. In his father's case it was his wife, Donna Isobel, and Donna Elvira who supplied the latter. Don Juan settled in Rome after attending the University of Pisa. Rome was run by the tyrannical Borgia family consisting of Caesar, Lucrezia and the Count Donati. Juan has his way with and was pursued by many women, but it is the one that he could not have that haunts him. It will be for her that he suffers the wrath of Borgia for ignoring Lucrezia and then killing Count Donati in a duel. For Adriana, they will both be condemned to death in the prison on the river Tigre.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 739,
    "metascore": null,
    "budget": 546000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 26,
    "reviews_from_critics": 15,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzBlNGU2NDItODcyYi00MWNkLWE2Y2MtZTRjZTlmMDExZWEyXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY268_CR39,0,182,268_AL_.jpg",
    "actors": [
        "Estelle Taylor",
        "Hedda Hopper",
        "Jane Winton",
        "John Barrymore",
        "John Roche",
        "Josef Swickard",
        "Mary Astor",
        "Montagu Love",
        "Myrna Loy",
        "Nigel De Brulier",
        "Warner Oland",
        "Willard Louis"
    ],
    "directors": [
        "Alan Crosland"
    ],
    "writers": [
        "Bess Meredyth"
    ],
    "genres": [
        "Adventure",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}