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

{
    "id": 10851276,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10851276?format=api",
    "title": "El Diablo entre las Piernas",
    "original_title": "El Diablo entre las Piernas",
    "year": 2019,
    "date_published": "2019-09-12",
    "duration": 147,
    "description": "Beatriz (Silvia Pasquel) and the Old Man (Alejandro Suárez) have been together for decades. A retired homeopathic pharmacist, the Old Man now divides his time between their Mexico City home...",
    "long_description": "Beatriz (Silvia Pasquel) and the Old Man (Alejandro Suárez) have been together for decades. A retired homeopathic pharmacist, the Old Man now divides his time between their Mexico City home where he shuffles around in his housecoat, raging against Beatriz, and paying secret visits to his mistress. Beatriz, when not bearing the brunt of the Old Man's tirades, sneaks out to take tango lessons - and to proposition her younger dance partner (Daniel Giménez Cacho). With their children having grown up and abandoned them long ago, the only person left to witness the aging couple's ever-escalating routine is Dinorah (Greta Cervantes), the young maid who will eventually take matters into her own hands.",
    "avg_vote": "5.9",
    "imdb_score": "5.9",
    "votes": 101,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": null,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZDgwNjY3M2YtYTYzMC00ZDcwLWE4OTQtNDMwMjM2YmU4N2RhXkEyXkFqcGdeQXVyOTIxNDQ1MTQ@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Alejandro Suárez",
        "Daniel Giménez Cacho",
        "Greta Cervantes",
        "Mar Carrera",
        "Patricia Reyes Spíndola",
        "Silvia Pasquel"
    ],
    "directors": [
        "Arturo Ripstein"
    ],
    "writers": [
        "Paz Alicia Garciadiego"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "Mexico"
    ],
    "languages": [
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Alebrije Cine y Video"
}