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

{
    "id": 10888554,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10888554?format=api",
    "title": "Las buenas intenciones",
    "original_title": "Las buenas intenciones",
    "year": 2019,
    "date_published": "2019-12-05",
    "duration": 85,
    "description": "An aging slacker finds his comfortable status-quo and family dynamic disrupted when his ex-wife and her current partner decide to move from Argentina to Paraguay and take his children with them.",
    "long_description": "Set in Argentina during the economic slump of the 1990s, writer-director Ana García Blaya's feature debut is a poignant, semi-autobiographical portrait of a family fractured by fraught circumstances and unruly personalities, but united by an invincible love. Aging slacker Gustavo (Javier Drolas) lives for three things: soccer, rock 'n' roll, and his children. Having separated some years ago, Gustavo and the kids' mother Cecilia (Jazmín Stuart) share custody and remain more or less amicable, despite Gustavo's inability to adhere to timetables or generate enough income to cover his share of the expenses. Gustavo runs a record store with his old buddy Néstor (Sebastian Arzeno), but business is poor, with bargain-priced pirate cassettes comprising the bulk of their sales. This tentative status quo is upset when Cecilia announces that she and her current partner want to start a new life in Paraguay - and take the kids with them. Gustavo is in no position to argue, but Amanda (Amanda Minujin...",
    "avg_vote": "6.6",
    "imdb_score": "6.5",
    "votes": 376,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 57093,
    "reviews_from_users": null,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMWYxYWJiYzktOTNhMC00Y2YzLTljZTEtMThmYjMzOWQ5MTlmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Amanda Minujin",
        "Carmela Minujin",
        "Ezequiel Fontenla",
        "Javier Drolas",
        "Jazmín Stuart",
        "Juan Minujín",
        "Sebastian Arzeno"
    ],
    "directors": [
        "Ana García Blaya"
    ],
    "writers": [
        "Ana García Blaya"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Argentina"
    ],
    "languages": [
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Bla Bla Cine"
}