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

{
    "id": 17938,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17938?format=api",
    "title": "La glace à trois faces",
    "original_title": "La glace à trois faces",
    "year": 1983,
    "date_published": "1983-03-13",
    "duration": 45,
    "description": "Psychological narrative avantgarde film about a wealthy young businessman who consecutively falls in love with a classy English woman (Pearl), a Russian sculptress (Athalia), and a naive ...",
    "long_description": "Psychological narrative avantgarde film about a wealthy young businessman who consecutively falls in love with a classy English woman (Pearl), a Russian sculptress (Athalia), and a naive working-class girl (Lucie). Overpowered by weakness, the coward sidesteps the obligations that love affairs impose: rather than living up to his dates he takes his sports-car from an ultra-modern garage and speeds to the fashionable beaches of Deauville. On his way, he is fatally hit by a descending swallow. The film is divided into three segments each of which consists of events the woman experienced. These sequences are embedded in scenes in which each of the three women is telling and casting her mind back to her own love affair. Thus, present, future and past merge and cannot be distinguished clearly. The intertwinement of several layers of time experience, recollection, telling and showing have been regarded as a source of inspiration of Alain Resnais and this film prefigures his \"L'Année ...",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 773,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 7,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNGJiNTlhNTktN2MxMC00MjZiLTg1YjUtM2I3NjZlNzAzMjU1XkEyXkFqcGdeQXVyMDUyOTUyNQ@@._V1_UY268_CR87,0,182,268_AL_.jpg",
    "actors": [
        "Jean Garat",
        "Jeanne Helbling",
        "Olga Day",
        "Raymond Guérin-Catelain",
        "René Ferté",
        "Suzy Pierson"
    ],
    "directors": [
        "Jean Epstein"
    ],
    "writers": [
        "Jean Epstein",
        "Paul Morand"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "France"
    ],
    "languages": [
        "French",
        "None"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Films Jean Epstein"
}