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

{
    "id": 11506284,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11506284?format=api",
    "title": "Padre no hay más que uno 2: La llegada de la suegra",
    "original_title": "Padre no hay más que uno 2: La llegada de la suegra",
    "year": 2020,
    "date_published": "2020-07-29",
    "duration": 96,
    "description": "Javier's life turns in a hell twice: not only Marisa announces that she's pregnant, but she calls the most feared people by him to help them.",
    "long_description": "2020, City of Madrid (Madrid, center to Spain and country's capital). After the success of virtual assistant Conchy created by him, the life of Javier and Marisa with their five children (teenager Sara, preteen Carlota, child Rocío and Dani, and little child Paula) seems to be better than ever. However, troubles appear by surprise in an unstoppable way: Carmen leaves Paco (Javier's brother) by his negative to have a child; Marisa's maid Rosaura announces to leave the family after Marisa's friend Leticia tempted her in secret to work for her in better job conditions; Sara is interested in a high school classmate named Junior; Rocío becomes obsessive to be Andalucian to be a star of flamenco music; Dani just want for traveling Eurodisney and has troubles with his school coach who prevents him to play soccer; and Paula passes the days claiming to have a pet dog. As if it not was enough, Marisa gives Javier a special news: she's pregnant...again. Overwhelmed by the situation despite all ...",
    "avg_vote": "5.9",
    "imdb_score": "5.6",
    "votes": 784,
    "metascore": null,
    "budget": 4700000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": 11700000,
    "reviews_from_users": null,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYzBiNmVmZGItNzg4NS00NmJlLWE2ZmItMzhhZGYyMjc0ZTFjXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Aníbal Gómez",
        "Calma Segura",
        "Carlos González Morollón",
        "Leo Harlem",
        "Loles León",
        "Lorena Berdún",
        "Luna Fulgencio",
        "Marta González de Vega",
        "Martina Valeria de Antioquía",
        "Santiago Segura",
        "Seve Miralles",
        "Sirena Segura",
        "Sílvia Abril",
        "Toni Acosta",
        "Wendy Ramos"
    ],
    "directors": [
        "Santiago Segura"
    ],
    "writers": [
        "Marta González de Vega",
        "Santiago Segura"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "Spain"
    ],
    "languages": [
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Bowfinger International Pictures"
}