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

{
    "id": 25062,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/25062?format=api",
    "title": "Dos monjes",
    "original_title": "Dos monjes",
    "year": 1934,
    "date_published": "1935-01-20",
    "duration": 85,
    "description": "In a Gothic-styled monastery, a monk named Javier sees the face of another monk, Juan, and suddenly attempts to bludgeon him to death with a heavy crucifix. Both men then relate their own ...",
    "long_description": "In a Gothic-styled monastery, a monk named Javier sees the face of another monk, Juan, and suddenly attempts to bludgeon him to death with a heavy crucifix. Both men then relate their own versions of a story of romantic rivalry between them. Javier, a consumptive musician, fell in love with and was betrothed to Anita. When his old friend Juan appeared, he was ecstatic. But soon, it seemed that Juan was making a play for Anita. When Javier found them in an apparently compromising position, a tussle ensued, and Anita was accidentally shot and killed. The two versions of the story differ significantly in Juan's motivations and in the details of Anita's death. Both men later became monks, leading to their latest encounter. As Juan begins to recover from the blow, Javier is subjected to horrific hallucinations.",
    "avg_vote": "7.1",
    "imdb_score": "7.0",
    "votes": 259,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzJiOTU0Y2EtYmQwOC00ZDg4LTg4ZTUtYTMzNTZmMmVjMTEzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY268_CR17,0,182,268_AL_.jpg",
    "actors": [
        "Alberto Miquel",
        "Beltrán de Heredia",
        "Carlos Villatoro",
        "Conchita Gentil Arcos",
        "Emma Roldán",
        "Hugo Taboada",
        "José Cortés",
        "Magda Haller",
        "Manuel Bernaldez",
        "Manuel Noriega",
        "Sofía Haller",
        "Víctor Urruchúa"
    ],
    "directors": [
        "Juan Bustillo Oro"
    ],
    "writers": [
        "José Manuel Cordero",
        "Juan Bustillo Oro"
    ],
    "genres": [
        "Drama",
        "Horror",
        "Mystery"
    ],
    "countries": [
        "Mexico"
    ],
    "languages": [
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Proa Films"
}