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

{
    "id": 10948718,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10948718?format=api",
    "title": "El robo del siglo",
    "original_title": "El robo del siglo",
    "year": 2020,
    "date_published": "2020-01-16",
    "duration": 114,
    "description": "In 2006, a group of thieves performed what is considered one of the most famous and smart bank heists in the history of Argentina when they rob the Banco Río branch in Acassuso.",
    "long_description": "On the sunny and seemingly ordinary Friday of January 13, 2006, the bohemian martial-arts instructor, Fernando Araujo, and his hand-picked four-member crew stormed into the branch of Banco Río in the affluent neighbourhood of Acassuso, Buenos Aires. As the thieves work fast, emptying dozens of safety deposit boxes crammed with millions of dollars, precious jewellery, and heavy gold bullion bars, the chief negotiator, Miguel Sileo, and his armed-to-the-teeth men encircle the silent two-storey building, in the aftermath of the bloody Villa Ramallo robbery. Now, five determined bank thieves along with twenty-three helpless hostages find themselves trapped in the building. Will the audacious robbers get away with the heist of the century?",
    "avg_vote": "7.3",
    "imdb_score": "7.2",
    "votes": 4054,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 7504226,
    "reviews_from_users": 9,
    "reviews_from_critics": 16,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDQxNzk2ZGEtNTc3Zi00NzczLTk2ZjgtZjhkYmI2ZDM1ZjhhXkEyXkFqcGdeQXVyODE0NzUzMzk@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Diego Peretti",
        "Guillermo Francella",
        "Iván Steinhardt",
        "Johanna Francella",
        "Juan Alari",
        "Juan Pablo García",
        "Juan Tupac Soler",
        "Luis Luque",
        "Magela Zanotta",
        "Mariano Argento",
        "Mario Alarcón",
        "Pablo Rago",
        "Paula Grinszpan",
        "Pochi Ducasse",
        "Rafael Ferro"
    ],
    "directors": [
        "Ariel Winograd"
    ],
    "writers": [
        "Alex Zito",
        "Fernando Araujo"
    ],
    "genres": [
        "Comedy",
        "Crime"
    ],
    "countries": [
        "Argentina"
    ],
    "languages": [
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "AZ Films"
}