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

{
    "id": 6886,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/6886?format=api",
    "title": "Judex",
    "original_title": "Judex",
    "year": 1916,
    "date_published": "1917-01-19",
    "duration": 300,
    "description": "A twelve part serial following the adventures of the masked vigilante Judex as he fights against criminals led by the corrupt banker Favrauxom.",
    "long_description": "The fraudulent banker receives a Favraux with Judex , signed request to replace his victims the damage , otherwise he would not survive the day . Favraux ignored the message and is then poisoned promptly on the evening held engagement party for his daughter. This is a message from Judex and donates after she learned of her father's secretary Vallières that the banker was a criminal , the whole legacy of welfare. It later turns out that Favraux is not really dead , Judex has him rather dazed and kidnapped to make him pay in the cellars of Château rouge in life-long imprisonment for his crimes . When the criminals pair Diana Monti and Robert Morales learn this, they try to get Favraux in their hands to reclaim the worn out by his daughter assets. The following are involved kidnapping and blackmail , in the course of Judex multiple Jacqueline Favraux must save , where he falls in love and comes with its mission as an avenger in conflict.",
    "avg_vote": "7.4",
    "imdb_score": "7.4",
    "votes": 879,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 15,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZmY1OWM4ZmItODBjZC00ZmQwLWJkOWEtNDZiNTA4NTE1ODllXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UY268_CR12,0,182,268_AL_.jpg",
    "actors": [
        "Gaston Michel",
        "Georges Flateau",
        "Jean Devalde",
        "Juliette Clarens",
        "Louis Leubas",
        "Marcel Lévesque",
        "Musidora",
        "Olinda Mano",
        "René Cresté",
        "René Poyen",
        "Yvette Andréyor",
        "Yvonne Dario",
        "Édouard Mathé"
    ],
    "directors": [
        "Louis Feuillade"
    ],
    "writers": [
        "Arthur Bernède",
        "Louis Feuillade"
    ],
    "genres": [
        "Adventure",
        "Crime"
    ],
    "countries": [
        "France"
    ],
    "languages": [
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Société des Etablissements L. Gaumont"
}