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

{
    "id": 24663,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24663?format=api",
    "title": "Eroi senza patria",
    "original_title": "The Three Musketeers",
    "year": 1933,
    "date_published": "1933-04-07",
    "duration": 210,
    "description": "Tom Wayne rescues Clancy, Renard and Schmidt in the Arabian desert and they join him in going after El Shaitan, a bad guy who is never seen as he tries to wipe out the Foreign Legion.",
    "long_description": "American aviator Tom Wayne (John Wayne)and his co-pilot, Stubbs (Noah Beery Jr.)are flying over an African desert when they see trouble below...Arab bandits are attacking three troopers of the French Foreign Legion. Using the machine gun mounted on his airplane, Wayne quickly stops the Arab attack. The rescued Legionaires---Clancy (Jack Mulhall), Renard (Raymond Hatton) and Dutch Schmidt (Francis X. Bushman Jr.)introduce themselves as \"The Three Musketeers.\" They inform Wayne that the attackers were followers of \"The Devil's Circle,\" a fanatic cult out to destroy the Foreign Legion by gun-running and insurrection. The cult's leader is El Shaitan, a masked man whose real identity is known to none. Wayne is drawn into the fight through the encouragement of his new friends, and a call for help from an old friend, Armand Corday (Lon Chaney Jr.), who has been duped into The Devil's Circle, but is trying to break away. But Armand, is killed by an assassin before he can tell what he knows ...",
    "avg_vote": "5.6",
    "imdb_score": "5.7",
    "votes": 355,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 5,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTg1MzczMDUwMl5BMl5BanBnXkFtZTYwOTgxNzQ5._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Al Ferguson",
        "Edward Peil Sr.",
        "Francis X. Bushman Jr.",
        "George Magrill",
        "Gordon De Main",
        "Hooper Atchley",
        "Jack Mulhall",
        "John Wayne",
        "Lon Chaney Jr.",
        "Noah Beery Jr.",
        "Raymond Hatton",
        "Robert Frazer",
        "Robert Warwick",
        "Ruth Hall",
        "William Desmond"
    ],
    "directors": [
        "Armand Schaefer",
        "Colbert Clark"
    ],
    "writers": [
        "Alexandre Dumas",
        "Norman S. Hall"
    ],
    "genres": [
        "Action",
        "Adventure",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Mascot Pictures"
}