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

{
    "id": 25004,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/25004?format=api",
    "title": "Il conte di Montecristo",
    "original_title": "The Count of Monte Cristo",
    "year": 1934,
    "date_published": "1936-01-01",
    "duration": 113,
    "description": "After greedy men have Edmound Dantes unjustly imprisoned for 20 years for innocently delivering a letter entrusted to him, he escapes to get his revenge on them.",
    "long_description": "Edmond Dantes is imprisoned in the Chateau d'If without trial, for carrying a message from Napoleon in exile on Elba. After being told that he died in prison, his fiancé Mercedes is forced to marry his rival Count Mondego. Twenty years later, Dantes escapes with the help of the Abbe Faria, who leaves him the treasure of Monte Cristo. Dantes, now called the Count of Monte Cristo, plans his revenge on the three who framed him.",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 2470,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 3270000,
    "worldwide_gross_income": null,
    "reviews_from_users": 38,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjM2OTIwMjUxOF5BMl5BanBnXkFtZTgwOTc0ODgwMzE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Clarence Wilson",
        "Douglas Walton",
        "Eleanor Phelps",
        "Elissa Landi",
        "Georgia Caine",
        "Irene Hervey",
        "Juliette Compton",
        "Lawrence Grant",
        "Louis Calhern",
        "Luis Alberni",
        "O.P. Heggie",
        "Raymond Walburn",
        "Robert Donat",
        "Sidney Blackmer",
        "Walter Walker"
    ],
    "directors": [
        "Rowland V. Lee"
    ],
    "writers": [
        "Alexandre Dumas",
        "Philip Dunne"
    ],
    "genres": [
        "Action",
        "Adventure",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Reliance Rroductions"
}