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

{
    "id": 10952782,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10952782?format=api",
    "title": "Malasaña 32",
    "original_title": "Malasaña 32",
    "year": 2020,
    "date_published": "2020-01-17",
    "duration": 104,
    "description": "A family moving to a new house to live the dream of the big city. A house where dreams turn in nightmares.",
    "long_description": "1976. City of Madrid, Madrid (center to Spain and country's capital). On the early days of The Spanish Transition after General Franco's death happened the previous year, family Olmedo moves to the big city from their natal town hoping to get money and a better life for everyone. They are Manolo, a farmer hired to work in the well-known Pegaso's truck company; his wife and previous sister-in-law Candela, hired to work in the too well-known shopping mall Galerías Preciados; oldest son Pepe, a shy and stammer 20-years old young who feels as a stranger in the city unable to find job; older daughter Amparo, a 17 years-old teen forced to leave the town and her boyfriend Mateo to live in Madrid, who dreams to live in Paris working as flight attendant for Iberia's flying company; the child Rafael \"Rafi\", the only one son of Manolo and Candela after Candela's first husband (father of Pepe and Amparo) left them; a finally Fermín, Candela's aging and senile father with troubles of memory. ...",
    "avg_vote": "5.4",
    "imdb_score": "5.5",
    "votes": 2078,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 5544102,
    "reviews_from_users": 9,
    "reviews_from_critics": 13,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTQzNzkzOGEtYjg2Yy00NjUyLWJkMTgtNjBjYjg3OTFlMGM4XkEyXkFqcGdeQXVyODc0OTEyNDU@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Almudena Salort",
        "Antonio Del Olmo",
        "Bea Segura",
        "Begoña Vargas",
        "Concha Velasco",
        "Eduardo Antuña",
        "Hugo Fuertes",
        "Iván Marcos",
        "Iván Renedo",
        "Javier Botet",
        "José Luis de Madariaga",
        "María Ballesteros",
        "Rosa Álvarez",
        "Sergio Castellanos",
        "Álex Fuertes"
    ],
    "directors": [
        "Albert Pintó"
    ],
    "writers": [
        "Gema R. Neira",
        "Ramón Campos"
    ],
    "genres": [
        "Horror"
    ],
    "countries": [
        "Spain"
    ],
    "languages": [
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "4 Cats Pictures"
}