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

{
    "id": 21505,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21505?format=api",
    "title": "The Unholy Three",
    "original_title": "The Unholy Three",
    "year": 1930,
    "date_published": "1930-07-12",
    "duration": 72,
    "description": "\"Talkie\" remake of Tod Browning's 1925 silent film. A trio of former sideshow performers double as the \"Unholy Three\" in a scam to nab some shiny rocks.",
    "long_description": "Professor Echo is a sideshow ventriloquist who recruits two sociopathic co-workers, Midge and Hercules, the show's midget and strong man respectively, into a burglary ring. Echo disguises himself as the elderly Mrs. O'Grady, the owner of a pet store, who sells talking parrots and mynah birds to a high-class clientèle with Hercules posing as his son-in-law married to Echo's pickpocket girlfriend Rosie and Midge passing as their infant son. Echo's ventriloquist skills initially convince the customers that their parrot can talk, but they're disappointed when they bring the mute bird home. A phone call of complaint brings Grandma O'Grady and her daughter's \"baby\" to the client's house to facilitate the bird's talking, an opportunity to case the house for a subsequent robbery by \"The Unholy Three.\"",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 1072,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 36,
    "reviews_from_critics": 9,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzcwMzA3OGYtYjI4Yi00MmEwLWExZjItNWQ0YTcyODA0YmQ3XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Clarence Burton",
        "Crauford Kent",
        "Elliott Nugent",
        "Harry Earles",
        "Ivan Linow",
        "John Miljan",
        "Lila Lee",
        "Lon Chaney"
    ],
    "directors": [
        "Jack Conway"
    ],
    "writers": [
        "Clarence Aaron 'Tod' Robbins"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}