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

{
    "id": 11173,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11173?format=api",
    "title": "Fante-Anne",
    "original_title": "Fante-Anne",
    "year": 1920,
    "date_published": "1920-09-11",
    "duration": 93,
    "description": "The story of an orphaned girl brought up by the Storlein family. Young Anne (Asta Nielsen) is brought as an infant to the Storlein farm by her mother, who has been traveling and is in need ...",
    "long_description": "The story of an orphaned girl brought up by the Storlein family. Young Anne (Asta Nielsen) is brought as an infant to the Storlein farm by her mother, who has been traveling and is in need of a rest. The two are turned away at the door, and the mother takes her young daughter to the barn to sleep. The farmhand Jon discovers them in the morning but the mother has not made it through the night, so young Anne is taken in and raised by the family. She is a rambunctious little girl, always getting her younger (step) brother into trouble. Finally mother Storlein has had enough, and lets slip that she never should have taken Anne in. Young Anne goes to Jon and learns the truth of her arrival at the farm. Years pass, and she and her younger step-brother are now smitten. But Jon, the farmhand who found her in the barn all those years ago is also in love with Anne. Anne will be betrayed by one and saved from a life in prison by the other, and in the end will find true happiness in a new land.",
    "avg_vote": "6.2",
    "imdb_score": "6.2",
    "votes": 126,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 1,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNzliNmMzODctM2RjOC00OTg2LThhYzQtNjdmNzUwZDQ0NmU0XkEyXkFqcGdeQXVyMjE4MTIyNDI@._V1_UY268_CR24,0,182,268_AL_.jpg",
    "actors": [
        "Anders Skrede",
        "Asta Nielsen",
        "Dagmar Myhrvold",
        "Edvard Drabløs",
        "Einar Tveito",
        "Elsa Vang",
        "Henny Skjønberg",
        "Johanne Bruhn",
        "Kristine Ullmo",
        "Lars Tvinde",
        "Magnus Falkberget",
        "Olaf Solberg",
        "Øygard"
    ],
    "directors": [
        "Rasmus Breistein"
    ],
    "writers": [
        "Kristofer Janson",
        "Rasmus Breistein"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "Norway"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Unknown"
}