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

{
    "id": 23649,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23649?format=api",
    "title": "Vampyr",
    "original_title": "Vampyr",
    "year": 1932,
    "date_published": "1932-05-06",
    "duration": 75,
    "description": "A drifter obsessed with the supernatural stumbles upon an inn where a severely ill adolescent girl is slowly becoming a vampire.",
    "long_description": "Allan Gray arrives late in the evening to a secluded riverside inn in the hamlet of Courtempierre. An old man enters his room, puts a sealed parcel on the table, blurts out that some woman mustn't die, and disappears. Gray senses in this a call for help. He puts the parcel in his pocket, and goes out. Eerie shadows lead him into an old house, where he encounters a weird village doctor. The doctor receives a bottle of poison from a strange, old woman. Through the window of an old castle Gray recognizes the old man from the inn. A shadow shoots the man, who drops dead. Inside the house Gray finds his two daughters, Gisèle and Léone, and some servants. He opens the parcel, and finds an old book about vampires. Léone is seriously ill after being bitten by a vampire. Instead of helping her, the village doctor places the bottle of poison at her bedside table, and then abducts her sister Gisèle. An old servant starts reading the old book, and finds out that the vampire in Courtempierre is a ...",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 15700,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 119,
    "reviews_from_critics": 139,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTY3NjM5MDc4NV5BMl5BanBnXkFtZTgwOTE1OTg5MTE@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Albert Bras",
        "Georges Boidin",
        "Henriette Gérard",
        "Jan Hieronimko",
        "Jane Mora",
        "Julian West",
        "Maurice Schutz",
        "N. Babanini",
        "Rena Mandel",
        "Sybille Schmitz"
    ],
    "directors": [
        "Carl Theodor Dreyer"
    ],
    "writers": [
        "Christen Jul",
        "Sheridan Le Fanu"
    ],
    "genres": [
        "Fantasy",
        "Horror"
    ],
    "countries": [
        "France",
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Tobis Filmkunst"
}