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

{
    "id": 17667,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17667?format=api",
    "title": "The Beloved Rogue",
    "original_title": "The Beloved Rogue",
    "year": 1927,
    "date_published": "1927-03-12",
    "duration": 99,
    "description": "François Villon, in his lifetime the most renowned poet in France, is also a prankster, an occasional criminal, and an ardent patriot.",
    "long_description": "In 1432, while François Villon is still an infant, his father dies as a martyr to his devotion to France. François grows up to be a renowned poet, an ardent patriot, and a notorious carouser who is not above criminal acts. During the revels of All Fools Day, he insults Duke Charles of Burgundy, for which King Louis XI, who is afraid of Charles, banishes Villon from Paris. In exile outside the city walls, François looks for ways to protect France from Burgundy's plots. When Charles plans to have one of his associates marry the king's ward Charlotte, Villon successfully disrupts the engagement, but for so doing is sentenced to death. But Villon finds a way to exploit Louis's superstitious nature long enough to give him another chance to serve France, while at the same time seeking the hand of Charlotte.",
    "avg_vote": "6.9",
    "imdb_score": "6.8",
    "votes": 701,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 14,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTM0MjI3MTI0M15BMl5BanBnXkFtZTcwNzU0MDMzNA@@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Angelo Rossitto",
        "Bertram Grassby",
        "Conrad Veidt",
        "Dick Sutherland",
        "Henry Victor",
        "Jane Winton",
        "John Barrymore",
        "Lawson Butt",
        "Lucy Beaumont",
        "Mack Swain",
        "Marceline Day",
        "Nigel De Brulier",
        "Otto Matieson",
        "Rose Dione",
        "Slim Summerville"
    ],
    "directors": [
        "Alan Crosland"
    ],
    "writers": [
        "George Marion Jr.",
        "Paul Bern"
    ],
    "genres": [
        "Adventure",
        "Drama",
        "History"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Feature Productions"
}