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

{
    "id": 16847,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16847?format=api",
    "title": "Faust",
    "original_title": "Faust: Eine deutsche Volkssage",
    "year": 1926,
    "date_published": "1927-01-31",
    "duration": 107,
    "description": "The demon Mephisto wagers with God that he can corrupt a mortal man's soul.",
    "long_description": "God and Satan war over earth; to settle things, they wager on the soul of Faust, a learned and prayerful alchemist. During a plague, Faust despairs and burns his books after failing to stop death; Satan sends Mephisto to tempt Faust, first with insight into treating the plague and then with a day's return to youth. Mephisto is clever, timing the end of this 24 hours as Faust embraces the beautiful Duchess of Parma. Faust trades his soul for youth. Some time later, he's bored, and demands on Easter Sunday that Mephisto take him home. Faust promptly sees and falls in love with the beautiful Gretchen, whose liaison with him brings her dishonor. Is there redemption? Who wins the wager?",
    "avg_vote": "8.1",
    "imdb_score": "8.1",
    "votes": 13815,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 65,
    "reviews_from_critics": 54,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZjFjYzM4NTYtMjcxMi00YTczLTg1NDktZmJhNTUwN2NmOTVlXkEyXkFqcGdeQXVyOTI2MjI5MQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Camilla Horn",
        "Emil Jannings",
        "Eric Barclay",
        "Frida Richard",
        "Gösta Ekman",
        "Hanna Ralph",
        "Werner Fuetterer",
        "William Dieterle",
        "Yvette Guilbert"
    ],
    "directors": [
        "F.W. Murnau"
    ],
    "writers": [
        "Gerhart Hauptmann",
        "Hans Kyser"
    ],
    "genres": [
        "Drama",
        "Fantasy",
        "Horror"
    ],
    "countries": [
        "Germany"
    ],
    "languages": [
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universum Film (UFA)"
}