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

{
    "id": 19901,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/19901?format=api",
    "title": "Una donna nella luna",
    "original_title": "Frau im Mond",
    "year": 1929,
    "date_published": "1930-05-08",
    "duration": 156,
    "description": "A tenacious scientist blasts off for the moon in hopes of riches that may be found there.",
    "long_description": "Thirty years ago, at a scientific conference, Prof. Manfeldt presented his theory on the existence of gold on the Moon. It was greeted with laughter by the assembled academics. Today, Herr Helius has ambitious plans to build a spaceship... and take it to the Moon! Windegger, his chief engineer, will be going, and so will Prof. Manfeldt, now living in a cramped garret alone with his theory. But there are disagreements with the financiers who insist that their man Turner also accompany the flight... The unmanned Rocket H 32 brings back valuable information from the dark side of the Moon. Helius is upset by the news of Windegger's engagement to the pretty Friede. And the financiers have a secret agenda: to control the world's gold supply... Finally, the Spaceship \"Friede\" is ready as it rolls out on its gantry for takeoff. The staged rocket works as planned, but the acceleration is fierce. As they approach the Moon, they discover a stowaway on board, Gustav, a little boy...",
    "avg_vote": "7.3",
    "imdb_score": "7.3",
    "votes": 2961,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 35,
    "reviews_from_critics": 35,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTQ4NzM2NDA0MV5BMl5BanBnXkFtZTgwMDgzMDM1MjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alexa von Porembsky",
        "Alfred Loretto",
        "Edgar Pauly",
        "Fritz Rasp",
        "Gerda Maurus",
        "Gerhard Dammann",
        "Gustav von Wangenheim",
        "Gustl Gstettenbaur",
        "Heinrich Gotho",
        "Karl Platen",
        "Klaus Pohl",
        "Margarete Kupfer",
        "Max Maximilian",
        "Tilla Durieux",
        "Willy Fritsch"
    ],
    "directors": [
        "Fritz Lang"
    ],
    "writers": [
        "Thea von Harbou"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universum Film (UFA)"
}